diff --git a/.github/workflows/unit_test.yml b/.github/workflows/unit_test.yml index a9f4521..dc21c8c 100644 --- a/.github/workflows/unit_test.yml +++ b/.github/workflows/unit_test.yml @@ -90,10 +90,10 @@ jobs: elif [[ "${{ matrix.test_type }}" == "fault_tolerance" ]]; then pytest -s -vvv ./tests/fault_tolerance/unit/ elif [[ "${{ matrix.test_type }}" == "ptl_resiliency" ]]; then - pytest -s -vvv ./tests/ptl_resiliency/unit/test_ft_state_machine.py + pytest -s -vvv ./tests/ptl_resiliency/unit/test_ft_state_machine.py elif [[ "${{ matrix.test_type }}" == "inprocess" ]]; then - pytest -s -vvv ./tests/inprocess/{test_compose.py,test_monitor_thread.py,test_rank_assignment.py,test_timeout.py,test_wrap.py} + pytest -s -vvv ./tests/inprocess/{test_compose.py,test_monitor_thread.py,test_rank_assignment.py,test_timeout.py,test_wrap.py} else - echo "Unknown test type: ${{ matrix.test_type }}" - exit 1 + echo "Unknown test type: ${{ matrix.test_type }}" + exit 1 fi