15 lines
178 B
YAML
15 lines
178 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
- "3.6"
|
|
- "3.8"
|
|
os: linux
|
|
dist: xenial
|
|
cache: pip
|
|
install:
|
|
- pip install pytest
|
|
before_script:
|
|
cd tests
|
|
script:
|
|
- pytest test_1.py
|