|
@@ -42,17 +42,18 @@ jobs:
|
|
cd docker/test
|
|
cd docker/test
|
|
python -m pip install --upgrade pipenv wheel
|
|
python -m pip install --upgrade pipenv wheel
|
|
|
|
|
|
-# - id: cache-pipenv
|
|
|
|
-# uses: actions/cache@v3
|
|
|
|
-# with:
|
|
|
|
-# path: ~/.local/share/virtualenvs
|
|
|
|
-# key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
|
|
|
|
|
|
+ - name: "Cache virtualenvs"
|
|
|
|
+ id: cache-pipenv
|
|
|
|
+ uses: actions/cache@v3
|
|
|
|
+ with:
|
|
|
|
+ path: ~/.local/share/virtualenvs
|
|
|
|
+ key: ${{ runner.os }}-pipenv-${{ hashFiles('**/Pipfile.lock') }}
|
|
|
|
|
|
- name: "Install dependencies"
|
|
- name: "Install dependencies"
|
|
if: steps.cache-pipenv.outputs.cache-hit != 'true'
|
|
if: steps.cache-pipenv.outputs.cache-hit != 'true'
|
|
run: |
|
|
run: |
|
|
cd docker/test
|
|
cd docker/test
|
|
- pipenv install --deploy --dev
|
|
|
|
|
|
+ pipenv install --deploy
|
|
docker network create net-test
|
|
docker network create net-test
|
|
|
|
|
|
- name: "Run tests"
|
|
- name: "Run tests"
|