Skip to content

Commit

Permalink
Fixing CI (#7)
Browse files Browse the repository at this point in the history
* Fixing CI
  • Loading branch information
smashedr authored Jul 23, 2023
1 parent 913ed06 commit fff205b
Showing 1 changed file with 8 additions and 4 deletions.
12 changes: 8 additions & 4 deletions .drone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@ steps:
commands:
- python3 -m pip install -r requirements.txt
- flake8 zipline.py
- python3 setup.py install
- python3 -m pip install -e .
- while ! curl --silent $${ZIPLINE_URL}; do sleep 1; done
- export ZIPLINE_TOKEN=$(python3 get_test_token.py)
- zipline zipline.py

Expand All @@ -51,7 +52,8 @@ steps:
commands:
- python3 -m pip install -r requirements.txt
- flake8 zipline.py
- python3 setup.py install
- python3 -m pip install -e .
- while ! curl --silent $${ZIPLINE_URL}; do sleep 1; done
- export ZIPLINE_TOKEN=$(python3 get_test_token.py)
- zipline zipline.py

Expand All @@ -62,7 +64,8 @@ steps:
commands:
- python3 -m pip install -r requirements.txt
- flake8 zipline.py
- python3 setup.py install
- python3 -m pip install -e .
- while ! curl --silent $${ZIPLINE_URL}; do sleep 1; done
- export ZIPLINE_TOKEN=$(python3 get_test_token.py)
- zipline zipline.py

Expand All @@ -73,6 +76,7 @@ steps:
commands:
- python3 -m pip install -r requirements.txt
- flake8 zipline.py
- python3 setup.py install
- python3 -m pip install -e .
- while ! curl --silent $${ZIPLINE_URL}; do sleep 1; done
- export ZIPLINE_TOKEN=$(python3 get_test_token.py)
- zipline zipline.py

0 comments on commit fff205b

Please sign in to comment.