12 lines
258 B
YAML
12 lines
258 B
YAML
language: python
|
|
python:
|
|
- "3.6"
|
|
install:
|
|
- pip install -r requirements.txt
|
|
- pip install -r requirements-dev.txt
|
|
- pip install -r tools/ci/requirements.txt
|
|
# command to run tests
|
|
script:
|
|
- python tools/ci/check_all.py
|
|
- python tests/test_all.py
|