Skip to content

Commit

Permalink
Update build.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
evansims committed Aug 14, 2023
1 parent af8e9a5 commit 810d399
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,13 +43,16 @@ jobs:
run: |
sudo ethtool -K eth0 tx off rx off
sudo apt install bubblewrap
export PIPENV_DEFAULT_PYTHON_VERSION=${{ matrix.python-version }}
export PIPENV_VENV_IN_PROJECT=1
export PIP_IGNORE_INSTALLED=1
pip install --user --upgrade pip
pip install --user pipenv
- name: Run tests
run: |
if [ -f requirements.txt ]; then pipenv install -r requirements.txt; fi
if [ -f requirements-dev.txt ]; then pipenv install -r requirements.txt-dev; fi
if [ -f requirements-dev.txt ]; then pipenv install --dev -r requirements-dev.txt; fi
bwrap \
--unshare-all \
--clearenv \
Expand Down

0 comments on commit 810d399

Please sign in to comment.