|
|
@ -31,12 +31,12 @@ jobs:
|
|
|
|
|
|
|
|
|
|
|
|
steps:
|
|
|
|
steps:
|
|
|
|
- name: Set up Python
|
|
|
|
- name: Set up Python
|
|
|
|
uses: actions/setup-python@v4
|
|
|
|
uses: actions/setup-python@v5
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
python-version: ${{ matrix.python-version }}
|
|
|
|
|
|
|
|
|
|
|
|
- name: Checkout
|
|
|
|
- name: Checkout
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
uses: actions/checkout@v4
|
|
|
|
|
|
|
|
|
|
|
|
- name: Install possible lxml build requirements (if building from source)
|
|
|
|
- name: Install possible lxml build requirements (if building from source)
|
|
|
|
run: sudo apt-get install -y libxml2-dev libxslt-dev python3-dev
|
|
|
|
run: sudo apt-get install -y libxml2-dev libxslt-dev python3-dev
|
|
|
@ -56,7 +56,7 @@ jobs:
|
|
|
|
cd src
|
|
|
|
cd src
|
|
|
|
python3 -m pytest --junitxml=../${{matrix.python-version}}-junit.xml -o junit_family=legacy
|
|
|
|
python3 -m pytest --junitxml=../${{matrix.python-version}}-junit.xml -o junit_family=legacy
|
|
|
|
- name: Upload test results
|
|
|
|
- name: Upload test results
|
|
|
|
uses: actions/upload-artifact@v3
|
|
|
|
uses: actions/upload-artifact@v4
|
|
|
|
if: success() || failure()
|
|
|
|
if: success() || failure()
|
|
|
|
with:
|
|
|
|
with:
|
|
|
|
name: test-results-${{matrix.python-version}}
|
|
|
|
name: test-results-${{matrix.python-version}}
|
|
|
|