diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index c0818be2..aaf4a614 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -24,22 +24,10 @@ jobs: run: pip install -r requirements.txt - name: Run Python unit tests - run: python3 -m unittest tests/zeta + run: python3 -m pytest - name: Verify that the Docker image for the action builds run: docker build . --file Dockerfile - - - name: Integration test 1 - uses: ./ - with: - input-one: something - input-two: true - - - name: Integration test 2 - uses: ./ - with: - input-one: something else - input-two: false - + - name: Verify integration test results - run: python3 -m unittest unittesting/zeta + run: python3 -m pytest