workflows: Prevent $PYTEST_ARGS from being overwritten

This commit is contained in:
Valentin Lorentz 2021-07-05 22:04:18 +02:00
parent 853f9c4a8b
commit bfa183e37e
2 changed files with 3 additions and 3 deletions

View File

@ -99,8 +99,8 @@ jobs:
make -j 4 INSPIRCD_DEBUG=3
make install
- name: Test with pytest
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH PYTEST_ARGS="-m
'not services'" make inspircd
run: PYTEST_ARGS='--junit-xml pytest.xml' PATH=~/.local/inspircd/bin:$PATH PYTEST_ARGS="$PYTEST_ARGS
-m 'not services'" make inspircd
- if: always()
name: Publish results
uses: actions/upload-artifact@v2

View File

@ -72,7 +72,7 @@ software:
devel_release: insp3
env:
# Atheme does not support Insp4 yet, so it fails to connect
devel: "PYTEST_ARGS=\"-m 'not services'\""
devel: "PYTEST_ARGS=\"$PYTEST_ARGS -m 'not services'\""
path: inspircd
prefix: ~/.local/inspircd
build_script: |