Skip to content

Commit

Permalink
create venv in github action
Browse files Browse the repository at this point in the history
  • Loading branch information
MarcelloPerathoner committed Sep 23, 2023
1 parent 5c95c16 commit 52772fd
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/python-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,10 +25,11 @@ jobs:
python-version: ${{ matrix.python-version }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m venv .venv
source .venv/bin/activate
python -m pip install pytest coverage[toml] tox
pip install --upgrade pip
pip install pytest coverage[toml] tox
pip install -e .
- name: Run tox
run: |
source .venv/bin/activate
Expand Down

0 comments on commit 52772fd

Please sign in to comment.