mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-31 12:10:31 +08:00
Also, removes flake8 ignores, since the warnings that were at odds with eachother now work.
13 lines
319 B
YAML
13 lines
319 B
YAML
language: python
|
|
python:
|
|
- "2.7"
|
|
before_install:
|
|
- sudo apt-get install gfortran
|
|
install:
|
|
- cat etc/requirements_dev.txt | grep -v "^#" | grep -v "^$" | grep -v ipython | grep -v nose | xargs pip install
|
|
- etc/ordered_pip.sh etc/requirements.txt
|
|
before_script:
|
|
- "flake8 zipline tests"
|
|
script:
|
|
- nosetests
|