Revert "Update run_pytest.yml"

This reverts commit ffb1256e24.
This commit is contained in:
KoenigMjr 2025-06-09 18:18:03 +02:00
parent ffb1256e24
commit 203feccbc6

View file

@ -8,14 +8,14 @@ jobs:
strategy:
matrix:
os: [ubuntu-latest]
python-version: ['3.8', '3.9', '3.10']
runs-on: ${{ matrix.os }}
python-version: ['3.7', '3.8', '3.9', '3.10']
runs-on: ${{matrix.os}}
steps:
- uses: actions/checkout@v4
- uses: actions/checkout@v1
- name: Set up Python ${{ matrix.python-version }} at ${{ matrix.os }}
uses: actions/setup-python@v4
- name: Set up Python ${{matrix.python-version}} at ${{matrix.os}}
uses: actions/setup-python@v3
with:
python-version: ${{ matrix.python-version }}
@ -23,14 +23,14 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
mkdir -p log/
mkdir log/
- name: Test with pytest
run: |
pytest -c test/pytest.ini
pytest -c 'test/pytest.ini'
- name: Save artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@master
with:
name: test.log
path: log/test.log