Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/certbot/certbot.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/run_http_server.py')
-rw-r--r--tests/run_http_server.py11
1 files changed, 0 insertions, 11 deletions
diff --git a/tests/run_http_server.py b/tests/run_http_server.py
deleted file mode 100644
index 0e4f8ac79..000000000
--- a/tests/run_http_server.py
+++ /dev/null
@@ -1,11 +0,0 @@
-import runpy
-import sys
-
-# Run Python's built-in HTTP server
-# Usage: python ./tests/run_http_server.py port_num
-# NOTE: This script should be compatible with 2.7, 3.4+
-
-# sys.argv (port number) is passed as-is to the HTTP server module
-runpy.run_module(
- 'http.server' if sys.version_info[0] == 3 else 'SimpleHTTPServer',
- run_name='__main__')