Skip to content

Commit 80a7388

Browse files
author
Vianpyro
committed
Run Prettier
1 parent ff46e79 commit 80a7388

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

.github/workflows/pytest.yml

Lines changed: 21 additions & 21 deletions
Original file line numberDiff line numberDiff line change
@@ -23,24 +23,24 @@ jobs:
2323
python-version: ["3.x"]
2424

2525
steps:
26-
- name: Checkout code
27-
uses: actions/checkout@v4
28-
29-
- name: Set up Python
30-
uses: actions/setup-python@v5
31-
with:
32-
python-version: ${{ matrix.python-version }}
33-
cache: 'pip'
34-
35-
- name: Install dependencies
36-
run: |
37-
pip install -r requirements.txt
38-
pip install pytest pytest-cov
39-
40-
- name: Run Pytest (Linux/macOS)
41-
if: runner.os != 'Windows'
42-
run: python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
43-
44-
- name: Run Pytest (Windows)
45-
if: runner.os == 'Windows'
46-
run: python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
26+
- name: Checkout code
27+
uses: actions/checkout@v4
28+
29+
- name: Set up Python
30+
uses: actions/setup-python@v5
31+
with:
32+
python-version: ${{ matrix.python-version }}
33+
cache: "pip"
34+
35+
- name: Install dependencies
36+
run: |
37+
pip install -r requirements.txt
38+
pip install pytest pytest-cov
39+
40+
- name: Run Pytest (Linux/macOS)
41+
if: runner.os != 'Windows'
42+
run: python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html
43+
44+
- name: Run Pytest (Windows)
45+
if: runner.os == 'Windows'
46+
run: python -m pytest --doctest-modules --junitxml=junit/test-results.xml --cov=com --cov-report=xml --cov-report=html

0 commit comments

Comments
 (0)