Skip to content

Commit 0f381f5

Browse files
committed
Remove pytest from installation requirements
1 parent df0266b commit 0f381f5

File tree

3 files changed

+8
-2
lines changed

3 files changed

+8
-2
lines changed

Makefile

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
install:
44
python setup.py install
55
pip install pylint
6+
pip install pytest
67

78
test:
89
PYTHONPATH=PYTHONPATH:money py.test money

README.rst

+7-1
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,13 @@ Support may be added one day for setting rounding modes. Foreign exchange rates
111111

112112
Contributing
113113
============
114-
Pull requests are welcome! Please include tests. You can run the tests from the root directory with
114+
Pull requests are welcome! Please include tests. You can install everything needed for development with
115+
116+
::
117+
118+
make install
119+
120+
You can then run the tests from the root directory with
115121

116122
::
117123

setup.py

-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,6 @@
2727
],
2828
keywords='money currency',
2929
install_requires=[
30-
'pytest==3.0.6',
3130
'babel==2.4.0'
3231
],
3332
)

0 commit comments

Comments
 (0)