summaryrefslogtreecommitdiff
path: root/debian/tests/python-upstream.py
diff options
context:
space:
mode:
Diffstat (limited to 'debian/tests/python-upstream.py')
-rw-r--r--debian/tests/python-upstream.py17
1 files changed, 0 insertions, 17 deletions
diff --git a/debian/tests/python-upstream.py b/debian/tests/python-upstream.py
deleted file mode 100644
index 098701aa..00000000
--- a/debian/tests/python-upstream.py
+++ /dev/null
@@ -1,17 +0,0 @@
-import pytest
-import os
-
-tmpdir = os.getenv("AUTOPKGTEST_TMP")
-
-if tmpdir is None:
- print("Need the environment variable AUTOPKGTEST_TMP.")
- exit(1)
-
-cwd = os.getcwd()
-test_path = cwd + "/cython/test"
-
-os.chdir(tmpdir)
-
-print("Running tests from %s with cwd %s." %(test_path, os.getcwd()))
-
-exit(pytest.main([test_path]))