Skip to content

Commit

Permalink
safety_replay only installs few extra requirements
Browse files Browse the repository at this point in the history
  • Loading branch information
rbiasini committed Oct 15, 2019
1 parent 25af7d3 commit 396d6aa
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 10 deletions.
6 changes: 4 additions & 2 deletions tests/safety_replay/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,10 @@ RUN pyenv install 3.7.3
RUN pyenv global 3.7.3
RUN pyenv rehash

COPY tests/safety_replay/requirements.txt requirements.txt
RUN pip install -r requirements.txt
COPY requirements.txt /tmp/
RUN pip install -r /tmp/requirements.txt
COPY tests/safety_replay/requirements_extra.txt requirements_extra.txt
RUN pip install -r requirements_extra.txt
COPY tests/safety_replay/install_capnp.sh install_capnp.sh
RUN ./install_capnp.sh

Expand Down
8 changes: 0 additions & 8 deletions tests/safety_replay/requirements.txt

This file was deleted.

4 changes: 4 additions & 0 deletions tests/safety_replay/requirements_extra.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
aenum
subprocess32
libarchive
pycapnp

0 comments on commit 396d6aa

Please sign in to comment.