Skip to content

Commit

Permalink
Dependencies manager updated to pipenv.
Browse files Browse the repository at this point in the history
close #14
  • Loading branch information
dougfraga committed Sep 12, 2020
1 parent a79fc11 commit 0c60f0f
Show file tree
Hide file tree
Showing 5 changed files with 244 additions and 28 deletions.
3 changes: 2 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,8 @@ language: python
python:
- 3.8
install:
- pip install -q -r requirements-dev.txt codecov
- pip install -q pipenv codecov
- pipenv sync --dev
script:
- flake8
- pytest libpythonpro_doug --cov=libpythonpro_doug
Expand Down
17 changes: 17 additions & 0 deletions Pipfile
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
[[source]]
name = "pypi"
url = "https://pypi.org/simple"
verify_ssl = true

[dev-packages]
flake8 = "*"
pytest = "*"
coverage = "*"
pytest-cov = "*"
pytest-mock = "*"

[packages]
requests = "*"

[requires]
python_version = "3.8"
225 changes: 225 additions & 0 deletions Pipfile.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

22 changes: 0 additions & 22 deletions requirements-dev.txt

This file was deleted.

5 changes: 0 additions & 5 deletions requirements.txt

This file was deleted.

0 comments on commit 0c60f0f

Please sign in to comment.