Skip to content

Commit

Permalink
Swap over to pip from pipenv to fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
PaulMcInnis committed Aug 31, 2020
1 parent 354a255 commit c1136d5
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 384 deletions.
9 changes: 5 additions & 4 deletions .travis.yml
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)'
4 changes: 3 additions & 1 deletion Pipfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,10 @@ url = "https://pypi.python.org/simple"
verify_ssl = true
name = "pypi"

[dev-packages]

[packages]
jobfunnel = {path = ".",editable = true}
jobfunnel = {path = ".", editable = true}
selenium = "*"
webdriver_manager = "*"

Expand Down
Loading

0 comments on commit c1136d5

Please sign in to comment.