summaryrefslogtreecommitdiff
path: root/tests/run.py
diff options
context:
space:
mode:
authorStephen Finucane <stephen@that.guru>2017-12-22 18:50:51 +0000
committerStephen Finucane <stephen@that.guru>2017-12-29 13:02:31 +0000
commit7c0723fd46825ea44a98ae22ac45d08ca0ddd88b (patch)
tree4fe63fccb8c6f158b88d69193d926158ae3f53e2 /tests/run.py
parent529c96a3c991d167edd3f7181284b1f21315a486 (diff)
downloadsphinx-git-7c0723fd46825ea44a98ae22ac45d08ca0ddd88b.tar.gz
tests: Remove 'tests/run.py'
This is no longer necessary. One test needs to be modified to deal with how 'python -m pytest' modifies the PATH. Signed-off-by: Stephen Finucane <stephen@that.guru>
Diffstat (limited to 'tests/run.py')
-rwxr-xr-xtests/run.py16
1 files changed, 0 insertions, 16 deletions
diff --git a/tests/run.py b/tests/run.py
deleted file mode 100755
index 6c82db782..000000000
--- a/tests/run.py
+++ /dev/null
@@ -1,16 +0,0 @@
-#!/usr/bin/env python
-# -*- coding: utf-8 -*-
-"""
- Sphinx unit test driver
- ~~~~~~~~~~~~~~~~~~~~~~~
-
- This script runs the Sphinx unit test suite.
-
- :copyright: Copyright 2007-2017 by the Sphinx team, see AUTHORS.
- :license: BSD, see LICENSE for details.
-"""
-import sys
-
-import pytest
-
-sys.exit(pytest.main(sys.argv[1:]))