forked from pool/python-tld
23 lines
606 B
Diff
23 lines
606 B
Diff
![]() |
From f34261e913c15391e8f48f90938a5164b69537b9 Mon Sep 17 00:00:00 2001
|
||
|
From: Sebastian Wagner <sebix@sebix.at>
|
||
|
Date: Fri, 6 Jul 2018 23:04:14 +0200
|
||
|
Subject: [PATCH] setup.py: fix test suite specifier
|
||
|
|
||
|
filenames are not supported. one must use the module name inside the package
|
||
|
---
|
||
|
CHANGELOG.rst | 1 +
|
||
|
setup.py | 2 +-
|
||
|
2 files changed, 2 insertions(+), 1 deletion(-)
|
||
|
|
||
|
diff --git a/setup.py b/setup.py
|
||
|
index 0931c07..32bff73 100644
|
||
|
--- a/setup.py
|
||
|
+++ b/setup.py
|
||
|
@@ -52,5 +52,5 @@
|
||
|
install_requires=[
|
||
|
'six>=1.9'
|
||
|
],
|
||
|
- test_suite='src/tld/tests.py',
|
||
|
+ test_suite='tld.tests',
|
||
|
)
|