File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 7878 -e CONDUCTOR_SERVER_URL=${{ env.CONDUCTOR_SERVER_URL }} \
7979 -v ${{ github.workspace }}/${{ env.COVERAGE_DIR }}:/package/${{ env.COVERAGE_DIR }}:rw \
8080 conductor-sdk-test:latest \
81- /bin/sh -c "cd /package && COVERAGE_FILE=/package/${{ env.COVERAGE_DIR }}/.coverage.integration coverage run -m pytest -m v4_1_73 tests/integration -v"
81+ /bin/sh -c "cd /package && COVERAGE_FILE=/package/${{ env.COVERAGE_DIR }}/.coverage.integration coverage run -m pytest -m v4 tests/integration -v"
8282
8383 - name : Generate coverage report
8484 id : coverage_report
Original file line number Diff line number Diff line change 1+ def pytest_collection_modifyitems (config , items ):
2+ for item in items :
3+ if item .get_closest_marker ("v5_2_6" ):
4+ item .add_marker ("v5" )
5+ if item .get_closest_marker ("v4_1_73" ):
6+ item .add_marker ("v4" )
You can’t perform that action at this time.
0 commit comments