mirror of
https://github.com/wassname/catalyst.git
synced 2026-07-23 12:50:22 +08:00
To handle, for instance, Columbus Day (Oct 10), on which there is no treasury data. We're only forward-filling data now, and no longer searching both back and forward in time.
13 lines
321 B
YAML
13 lines
321 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
|