Skip to content

Commit a281cd7

Browse files
committed
fix setup.py so that installing isnt broken
1 parent dacca2a commit a281cd7

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

requirements-dev.txt

Lines changed: 0 additions & 2 deletions
This file was deleted.

requirements-test.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
mock~=4.0.3

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@
3333
url = 'https://github.com/hologram-io/hologram-python/',
3434
packages = find_packages(),
3535
include_package_data = True,
36-
tests_require = open('requirements-dev.txt').read().split(),
36+
tests_require = open('requirements-test.txt').read().split(),
3737
install_requires = open('requirements.txt').read().split(),
3838
scripts = ['scripts/hologram'],
3939
license = 'MIT',

0 commit comments

Comments
 (0)