Skip to content

Commit

Permalink
update name
Browse files Browse the repository at this point in the history
  • Loading branch information
czoido committed Sep 24, 2024
1 parent 9af8d0c commit 0fc2c3e
Showing 1 changed file with 10 additions and 12 deletions.
22 changes: 10 additions & 12 deletions .github/workflows/ci-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,6 +60,8 @@ jobs:
strategy:
matrix:
python-version: ['3.12.3', '3.9.2', '3.8.6', '3.6.15']
test-type: ['unittests', 'integration', 'functional']
name: Python ${{ matrix.python-version }} - ${{ matrix.test-type }}
steps:
- name: Checkout code
uses: actions/checkout@v3
Expand All @@ -83,17 +85,13 @@ jobs:
pip install -r conans/requirements_server.txt
pip install meson
- name: Run unit tests
- name: Run tests
shell: bash
run: |
pytest test/unittests --durations=20 -n 4
- name: Run integration tests
shell: bash
run: |
pytest test/integration --durations=20 -n 4
- name: Run functional tests
shell: bash
run: |
pytest test/functional --durations=20 -n 4
if [ "${{ matrix.test-type }}" == "unittests" ]; then
pytest test/unittests --durations=20 -n 4
elif [ "${{ matrix.test-type }}" == "integration" ]; then
pytest test/integration --durations=20 -n 4
elif [ "${{ matrix.test-type }}" == "functional" ]; then
pytest test/functional --durations=20 -n 4
fi

0 comments on commit 0fc2c3e

Please sign in to comment.