From be0b7936c7d82dfcea1df2062af4bce6a3a3f36d Mon Sep 17 00:00:00 2001 From: Eternal Reclaimer <98760976+kyegomez@users.noreply.github.com> Date: Mon, 18 Dec 2023 19:20:41 -0500 Subject: [PATCH] Update unit-test.yml --- .github/workflows/unit-test.yml | 18 +++--------------- 1 file changed, 3 insertions(+), 15 deletions(-) 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