Thanks to visit codestin.com Credit goes to github.com
We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e688066 commit cf11cbeCopy full SHA for cf11cbe
.github/workflows/build.yml
@@ -56,20 +56,22 @@ jobs:
56
- name: Configure dependencies
57
run: |
58
sudo apt install bubblewrap
59
+ pip install --user --upgrade pip
60
pip install --user pipx
61
pipx ensurepath
62
pipx install poetry
63
pipx install poethepoet
64
+ poetry config virtualenvs.in-project true
65
poetry install --with dev
66
67
- name: Run tests
68
- bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} poetry run poe test
69
+ bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash poetry run poe test
70
71
- name: Run lint
72
73
poetry run poe lint:install
- bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} poetry run poe lint
74
+ bwrap ${{ env.BUBBLEWRAP_ARGUMENTS }} bash poetry run poe lint
75
76
- if: ${{ matrix.python-version == '3.10' }}
77
name: Upload coverage
0 commit comments