From e4415d822a1d7e52b7cf042b43e203d53ae51f42 Mon Sep 17 00:00:00 2001 From: VakarisZ Date: Wed, 14 Apr 2021 17:06:16 +0300 Subject: [PATCH] Fixed requirement installation in travis to install from lock files, so that travis would ideally replicate our development --- .travis.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.travis.yml b/.travis.yml index c9a0f4e02..4a320e385 100644 --- a/.travis.yml +++ b/.travis.yml @@ -23,12 +23,12 @@ before_install: install: # Python - pip install pipenv -# Install requirements as they are needed by UT's +# Install island and monkey requirements as they are needed by UT's - pushd monkey/monkey_island -- pipenv install +- pipenv sync # This installs dependencies from lock - popd - pushd monkey/infection_monkey -- pipenv install +- pipenv sync # This installs dependencies from lock - popd - pipenv install black==20.8b1 flake8==3.9.0 pytest pytest-cov isort==5.8.0 # for next stages - pipenv install coverage # for code coverage