Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Adds Pipfile support #25

Merged
merged 12 commits into from
Jun 28, 2018
Merged
1 change: 1 addition & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ install:
# Command to run tests, e.g. python setup.py test
script:
- flake8 thanks
- pip list
- python setup.py test


1 change: 1 addition & 0 deletions requirements_dev.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,4 @@ coverage==4.4.2
Sphinx==1.6.5
twine==1.9.1
ddt
pytest
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ exclude = docs
max-line-length = 120

[aliases]

test=pytest
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -18,13 +18,15 @@
'termcolor>=1',
'setuptools>=',
'requests>=2',
'toml'
]

setup_requirements = [
'nose'
"pytest-runner"
]

test_requirements = [
"pytest",
'ddt',
]

Expand Down Expand Up @@ -62,7 +64,6 @@
'Programming Language :: Python :: 3.5',
'Programming Language :: Python :: 3.6',
],
test_suite='nose.collector',
tests_require=test_requirements,
setup_requires=setup_requirements,
)
Loading