@@ -33,18 +33,10 @@ test:
3333 COVERAGE_CORE=sysmon pytest --cov=./ --junitxml=junit.xml -o junit_family=legacy
3434
3535test.unit :
36- @if [ -n " $( GROUP) " ]; then \
37- COVERAGE_CORE=sysmon pytest --splits ${SPLIT} --group $(GROUP ) --cov=./ -m " not integration" --cov-report=xml:unit.$(GROUP ) .coverage.xml --junitxml=unit.$(GROUP ) .junit.xml -o junit_family=legacy; \
38- else \
39- COVERAGE_CORE=sysmon pytest --cov=./ -m " not integration" --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy; \
40- fi
36+ COVERAGE_CORE=sysmon pytest --cov=./ -m " not integration" --cov-report=xml:unit.coverage.xml --junitxml=unit.junit.xml -o junit_family=legacy
4137
4238test.integration :
43- @if [ -n " $( GROUP) " ]; then \
44- COVERAGE_CORE=sysmon pytest --splits ${SPLIT} --group $(GROUP ) --cov=./ -m " integration" --cov-report=xml:integration.$(GROUP ) .coverage.xml --junitxml=integration.$(GROUP ) .junit.xml -o junit_family=legacy; \
45- else \
46- COVERAGE_CORE=sysmon pytest --cov=./ -m " integration" --cov-report=xml:integration.coverage.xml --junitxml=integration.junit.xml -o junit_family=legacy; \
47- fi
39+ COVERAGE_CORE=sysmon pytest --cov=./ -m " integration" --cov-report=xml:integration.coverage.xml --junitxml=integration.junit.xml -o junit_family=legacy
4840
4941lint :
5042 make lint.install
@@ -219,18 +211,10 @@ test_env.container_check_db:
219211 while ! nc -vz timescale 5432; do sleep 1; echo " waiting for timescale" ; done
220212
221213test_env.run_unit :
222- @if [ -n " $( GROUP) " ]; then \
223- docker compose exec api make test.unit SPLIT=${SPLIT} GROUP=${GROUP} ; \
224- else \
225- docker compose exec api make test.unit; \
226- fi
214+ docker compose exec api make test.unit
227215
228216test_env.run_integration :
229- # @if [ -n "$(GROUP)" ]; then \
230- # docker compose exec api make test.integration SPLIT=${SPLIT} GROUP=${GROUP}; \
231- # else \
232- # docker compose exec api make test.integration; \
233- # fi
217+ # docker compose exec api make test.integration
234218 echo " Skipping. No Tests"
235219
236220test_env.check-for-migration-conflicts :
0 commit comments