Skip to content

Commit c75ccdd

Browse files
authored
Update test directory from 'test' to 'tests'
1 parent 81b9b4b commit c75ccdd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

.github/workflows/main.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ jobs:
3131
PYTHONPATH: .
3232
run: |
3333
mkdir -p allure-results
34-
pytest test/ --alluredir=allure-results -v
34+
pytest tests/ --alluredir=allure-results -v
3535
- name: Generate Allure report
3636
run: |
3737
allure generate allure-results -o allure-report --clean
@@ -45,7 +45,7 @@ jobs:
4545
PYTHONPATH: .
4646
run: |
4747
mkdir -p reports
48-
pytest test/ --html=reports/report.html --self-contained-html
48+
pytest tests/ --html=reports/report.html --self-contained-html
4949
- name: Upload HTML tests report
5050
uses: actions/upload-artifact@v4
5151
with:
@@ -55,7 +55,7 @@ jobs:
5555
env:
5656
PYTHONPATH: .
5757
run: |
58-
pytest test/ --cov=pages --cov-report=xml:coverage.xml --cov-report=html:htmlcov -v
58+
pytest tests/ --cov=pages --cov-report=xml:coverage.xml --cov-report=html:htmlcov -v
5959
- name: Upload Coverage HTML report
6060
uses: actions/upload-artifact@v4
6161
with:
@@ -66,4 +66,4 @@ jobs:
6666
with:
6767
file: ./coverage.xml
6868
token: ${{ secrets.CODECOV_TOKEN }}
69-
fail_ci_if_error: true
69+
fail_ci_if_error: true

0 commit comments

Comments
 (0)