diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 30a24309..5bd32428 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -23,7 +23,7 @@ jobs: sudo apt-get install build-essential python3-dev pip install -r requirements.txt - name: Run unit tests - run: python -m unittest discover + run: python -m unittest discover -s tests - name: Run CI run: ./CI/run.sh - name: Build the Docker images diff --git a/kraken/plugins/test_pod_plugin.py b/tests/test_pod_plugin.py similarity index 100% rename from kraken/plugins/test_pod_plugin.py rename to tests/test_pod_plugin.py diff --git a/kraken/plugins/test_run_python_plugin.py b/tests/test_run_python_plugin.py similarity index 100% rename from kraken/plugins/test_run_python_plugin.py rename to tests/test_run_python_plugin.py diff --git a/kraken/plugins/vmware/test_vmware_plugin.py b/tests/test_vmware_plugin.py similarity index 100% rename from kraken/plugins/vmware/test_vmware_plugin.py rename to tests/test_vmware_plugin.py