Skip to content

Commit

Permalink
TESTS-4: Added dev requirements as a default for all environments.
Browse files Browse the repository at this point in the history
  • Loading branch information
spyrostz committed Feb 5, 2020
1 parent 954bb57 commit 39cb7f1
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ ADD . /app

WORKDIR /app

RUN pip install --upgrade pip ptpython
RUN pip install --upgrade pip
RUN pip install -r requirements/pandapower.txt
RUN pip install -e .

Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
d3a_interface_branch = os.environ["BRANCH"]

try:
with open('requirements/base.txt') as req:
with open('requirements/dev.txt') as req:
REQUIREMENTS = [r.partition('#')[0] for r in req if not r.startswith('-e')]
# TODO: Workaround for https://github.com/ethereum/py-solc/issues/64
REQUIREMENTS.extend(
Expand Down

0 comments on commit 39cb7f1

Please sign in to comment.