diff --git a/software/pyproject.toml b/software/pyproject.toml index 2bd304644..a9f3b3c06 100644 --- a/software/pyproject.toml +++ b/software/pyproject.toml @@ -124,4 +124,4 @@ local_scheme = "node-and-timestamp" test = ["setuptools"] [tool.pdm.scripts] -test = {cmd = "test.py -v"} +test = {cmd = "python -m unittest"} diff --git a/software/test.py b/software/test.py deleted file mode 100644 index 0470583e9..000000000 --- a/software/test.py +++ /dev/null @@ -1,8 +0,0 @@ -# Top-level interface to run the Glasgow tests. - -import unittest -from setuptools.command.test import ScanningLoader - - -if __name__ == "__main__": - unittest.main(module="glasgow", testLoader=ScanningLoader())