This repository was archived by the owner on Jun 13, 2025. It is now read-only.
File tree Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Expand file tree Collapse file tree 1 file changed +10
-2
lines changed Original file line number Diff line number Diff line change @@ -34,10 +34,18 @@ test:
3434 COVERAGE_CORE=sysmon python -m pytest --cov=./ --junitxml=junit.xml -o junit_family=legacy
3535
3636test.unit :
37- COVERAGE_CORE=sysmon python -m pytest --splits 5 --cov=./ -m " not integration" --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy
37+ @if [ -n " $( GROUP) " ]; then \
38+ COVERAGE_CORE=sysmon python -m pytest --splits 5 --$(GROUP ) --cov=./ -m " not integration" --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy; \
39+ else \
40+ COVERAGE_CORE=sysmon python -m pytest --cov=./ -m " not integration" --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy; \
41+ fi
3842
3943test.integration :
40- COVERAGE_CORE=sysmon python -m pytest --splits 5 --cov=./ -m " integration" --cov-report=xml:integration.coverage.xml --junitxml=integration.junit.xml -o junit_family=legacy
44+ @if [ -n " $( GROUP) " ]; then \
45+ COVERAGE_CORE=sysmon python -m pytest --splits 5 --$(GROUP ) --cov=./ -m " integration" --cov-report=xml:integration.coverage.xml --junitxml=integration.junit.xml -o junit_family=legacy; \
46+ else \
47+ COVERAGE_CORE=sysmon python -m pytest --cov=./ -m " integration" --cov-report=xml:integration.coverage.xml --junitxml=integration.junit.xml -o junit_family=legacy; \
48+ fi
4149
4250lint :
4351 make lint.install
You can’t perform that action at this time.
0 commit comments