-
Notifications
You must be signed in to change notification settings - Fork 227
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Swap over to pip from pipenv to fix build
- Loading branch information
1 parent
354a255
commit c1136d5
Showing
3 changed files
with
8 additions
and
384 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,14 @@ | ||
language: python | ||
python: | ||
- '3.6.9' | ||
- '3.8.0' | ||
install: | ||
- 'pip install flake8 pipenv pytest-cov pytest-mock' | ||
- 'pipenv sync' | ||
- 'pip install -e jobfunnel' | ||
- 'python -m nltk.downloader stopwords' | ||
before_script: 'flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics' | ||
before_script: | ||
- 'flake8 . --count --select=E9,F63,F7,F82 --show-source --statistics' | ||
script: | ||
- 'python -m jobfunnel -s demo/settings.yaml' | ||
- 'funnel -s demo/settings.yaml' | ||
- 'pytest --cov=jobfunnel --cov-report=xml' | ||
after_success: | ||
- 'bash <(curl -s https://codecov.io/bash)' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.