@@ -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