From ca8f02b14d13d81865ede3f8575e01a6d74efd89 Mon Sep 17 00:00:00 2001 From: Kye Date: Fri, 30 Jun 2023 09:34:51 -0400 Subject: [PATCH] clean up --- .github/workflows/unit-test.yml | 4 ++-- unittesting/{agents => }/swarms.py | 0 2 files changed, 2 insertions(+), 2 deletions(-) rename unittesting/{agents => }/swarms.py (100%) diff --git a/.github/workflows/unit-test.yml b/.github/workflows/unit-test.yml index 2d1e4889..8d4cf81f 100644 --- a/.github/workflows/unit-test.yml +++ b/.github/workflows/unit-test.yml @@ -21,7 +21,7 @@ jobs: python-version: '3.10' - name: Run Python unit tests - run: python3 -u -m unittesting/agent/swarms + run: python3 -u -m unittesting/swarms.py - name: Verify that the Docker image for the action builds run: docker build . --file Dockerfile @@ -39,4 +39,4 @@ jobs: input-two: false - name: Verify integration test results - run: python3 -u -m unittesting/agent/swarms \ No newline at end of file + run: python3 -u -m unittesting/swarms.py \ No newline at end of file diff --git a/unittesting/agents/swarms.py b/unittesting/swarms.py similarity index 100% rename from unittesting/agents/swarms.py rename to unittesting/swarms.py