Skip to content
This repository was archived by the owner on Feb 20, 2026. It is now read-only.

Commit 41d2336

Browse files
committed
GitHub Actions: use clean virtualenvs
Just in case
1 parent 8fc0569 commit 41d2336

4 files changed

Lines changed: 2 additions & 6 deletions

File tree

.github/workflows/doc-check.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ jobs:
1818
- name: Install and configure poetry
1919
run: |
2020
python -m pip install poetry
21-
python -m poetry config virtualenvs.create false
2221
2322
- name: Prepare project for development
2423
run: python -m poetry install

.github/workflows/linters.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,6 @@ jobs:
1919
- name: Install and configure poetry
2020
run: |
2121
python -m pip install poetry
22-
python -m poetry config virtualenvs.create false
2322
2423
- name: Prepare project for development
2524
run: python -m poetry install

.github/workflows/safety.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,6 @@ jobs:
2121
- name: Install and configure poetry
2222
run: |
2323
python -m pip install poetry
24-
python -m poetry config virtualenvs.create false
2524
2625
- name: Prepare project for development
2726
run: python -m poetry install

.github/workflows/tests.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -24,12 +24,11 @@ jobs:
2424
- name: Install and configure poetry
2525
run: |
2626
python -m pip install poetry
27-
python -m poetry config virtualenvs.create false
2827
2928
- name: Prepare project for development
3029
run: python -m poetry install
3130

3231
- name: Run tests
3332
run: |
34-
python -m pytest --cov cli_ui
35-
python -m codecov
33+
python -m poetry run pytest --cov cli_ui
34+
python -m poetry run codecov

0 commit comments

Comments
 (0)