lightning/.travis.yml

17 lines
349 B
YAML
Raw Normal View History

2019-07-25 01:09:36 +00:00
language: python
python:
- "3.7"
# command to install dependencies
cache: pip
install:
- pip install -e .
2019-07-25 01:56:38 +00:00
- pip install -r requirements.txt
- pip install -r tests/requirements.txt
2019-07-25 01:56:38 +00:00
- pip install -U numpy
2019-07-25 01:09:36 +00:00
# keep build from timing out
dist: xenial
# command to run tests
script:
- py.test -v # or py.test for Python versions 3.5 and below