We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2a035a9 commit d22a9b3Copy full SHA for d22a9b3
2 files changed
.travis.yml
@@ -5,7 +5,7 @@ python:
5
- "3.4"
6
# command to install dependencies
7
install:
8
- - "python setup.py install"
+ - pip install -e .[test]
9
# command to run tests
10
script:
11
- - "PYTHONPATH=. python tests/client_test.py"
+ - python tests/client_test.py
setup.py
@@ -29,8 +29,12 @@
29
packages=['sift'],
30
install_requires=[
31
"requests >= 0.14.1",
32
- "mock >= 1.0.1",
33
],
+ extras_require={
34
+ 'test': [
35
+ 'mock >= 1.0.1',
36
+ ],
37
+ },
38
39
classifiers=[
40
"Programming Language :: Python",
0 commit comments