Thanks to visit codestin.com
Credit goes to github.com

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@ jobs:
- allure-python-commons-test/**
- tests/*.py
- tests/allure_pytest/**
- .github/workflows/build.yaml
other-changes:
name: Collect file changes other than allure-pytest
runs-on: ubuntu-latest
Expand All @@ -38,26 +39,34 @@ jobs:
- allure-python-commons-test/**
- tests/*.py
- tests/allure_behave/**
- .github/workflows/build.yaml
allure-nose2:
- allure-nose2/**
- allure-python-commons/**
- allure-python-commons-test/**
- tests/*.py
- tests/allure_nose2/**
- .github/workflows/build.yaml
allure-pytest-bdd:
- allure-pytest-bdd/**
- allure-python-commons/**
- allure-python-commons-test/**
- tests/*.py
- tests/allure_pytest_bdd/**
- .github/workflows/build.yaml
allure-robotframework:
- allure-robotframework/**
- allure-python-commons/**
- allure-python-commons-test/**
- tests/*.py
- tests/allure_robotframework/**
allure-python-commons: allure-python-commons/**
allure-python-commons-test: allure-python-commons-test/**
- .github/workflows/build.yaml
allure-python-commons:
- allure-python-commons/**
- .github/workflows/build.yaml
allure-python-commons-test:
- allure-python-commons-test/**
- .github/workflows/build.yaml

lint:
name: Static check
Expand All @@ -70,7 +79,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: "3.12"
python-version: "3.13"

- name: Install linting packages
run: pip install -r ./requirements/linting.txt
Expand All @@ -85,11 +94,8 @@ jobs:
if: ${{ needs.pytest-changes.outputs.changed == 'true' }}
strategy:
matrix:
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
pytest-version: ["7.*", "8.*"]
exclude:
- python-version: "3.7"
pytest-version: "8.*"
env:
TEST_TMP: /tmp
ALLURE_INDENT_OUTPUT: yep
Expand Down Expand Up @@ -122,7 +128,7 @@ jobs:
strategy:
matrix:
package: ${{ fromJSON(needs.other-changes.outputs.packages) }}
python-version: ["3.7", "3.8", "3.9", "3.10", "3.11", "3.12"]
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12", "3.13"]
exclude:
- package: allure-pytest
env:
Expand Down