Skip to content

Commit 3b8d64c

Browse files
fcollmanRussTorres
authored andcommitted
moved test again
1 parent eb34e30 commit 3b8d64c

3 files changed

Lines changed: 12 additions & 2 deletions

File tree

Dockerfile.base

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@ RUN mkdir -p /usr/local/render-python
7070
COPY . /usr/local/render-python
7171
WORKDIR /usr/local/render-python
7272
RUN pip install -r requirements.txt
73-
RUN pip install -r ./test/requirements.txt
73+
RUN pip install -r test_requirements.txt
7474
RUN pip install matplotlib pandas jupyter
7575
#install render python using pip from github
7676
#RUN pip install -e git+https://github.com/fcollman/render-python.git@master#egg=render-python

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ def run_tests(self):
2222
sys.exit(errno)
2323

2424

25-
with open('test/requirements.txt', 'r') as f:
25+
with open('test_requirements.txt', 'r') as f:
2626
test_required = f.read().splitlines()
2727

2828
with open('requirements.txt', 'r') as f:

test_requirements.txt

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
coverage>=4.1
2+
mock>=2.0.0
3+
pep8>=1.7.0
4+
pytest>=3.0.5
5+
pytest-cov>=2.2.1
6+
pytest-pep8>=1.0.6
7+
pytest-xdist>=1.14
8+
flake8>=3.0.4
9+
pylint>=1.5.4
10+
scipy

0 commit comments

Comments
 (0)