You can not select more than 25 topics
Topics must start with a chinese character,a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- language: python
- matrix:
- include:
- - python: 3.6
- env: NUMPY=1.18.2 CERTIFI=2020.06.20
- install:
- - pip install numpy==1.18.2
- - pip install certifi==2020.06.20
- - sudo apt-get install libssl-dev libcurl4-openssl-dev libyaml-dev build-essential libopenblas-dev libcap-dev ffmpeg
- - pip install -e .
- before_script:
- - pip install coveralls
- - pip install pytest-cover
- script:
- - py.test tods/tests/ --cov=tods
- after_success:
- - coveralls
|