Skip to content

Commit

Permalink
Convert requirements to pipenv
Browse files Browse the repository at this point in the history
Fixes: pyvec#11
  • Loading branch information
encukou committed Apr 5, 2019
1 parent 19bc2c4 commit 8382125
Show file tree
Hide file tree
Showing 5 changed files with 482 additions and 21 deletions.
5 changes: 2 additions & 3 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,9 @@ notifications:
email: false
install:
# pytest is already installed, we need a greater version
- pip install --upgrade pytest
- pip install -r requirements.txt
- pipenv install --dev
script:
- pytest
- pipenv run pytest
branches:
only:
master
26 changes: 26 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
pytest = "*"

[packages]
arca = ">=0.3.1"
pytest = "*"
pytest-cov = "*"
pytest-flake8 = "*"
pytest-mock = "*"
requests = "*"
requests-mock = "*"
giturlparse = "*"
raven = {extras = ["flask"],version = "*"}
Flask = "*"
PyYAML = "*"
TravisPy = "*"
GitHub-Flask = "*"
Flask-Session = "*"

[requires]
python_version = "3.7"
Loading

0 comments on commit 8382125

Please sign in to comment.