mirror of
https://github.com/JoergFranke/ADNC.git
synced 2024-11-17 13:58:03 +08:00
14 lines
187 B
YAML
14 lines
187 B
YAML
|
|
sudo: false
|
|
language: python
|
|
python:
|
|
- 3.6
|
|
cache: pip
|
|
install:
|
|
- easy_install distribute
|
|
- pip install -r requirements.txt
|
|
- pip install -e .
|
|
script:
|
|
- pytest --cov=adnc test
|
|
|