13 lines
161 B
YAML
13 lines
161 B
YAML
language: python
|
|
branches:
|
|
only:
|
|
- "develop"
|
|
- "master"
|
|
python:
|
|
- "3.6"
|
|
install:
|
|
- pip3 install -r requirements.txt
|
|
script:
|
|
- python3 tests.py
|
|
|