mirror of
https://github.com/ArchiveBox/ArchiveBox.git
synced 2025-05-13 22:54:27 -04:00
slightly tweak test verbiage
This commit is contained in:
parent
d4aa8f6237
commit
08161a526b
1 changed files with 3 additions and 4 deletions
7
setup.py
7
setup.py
|
@ -33,11 +33,10 @@ VERSION = json.loads((PACKAGE_DIR / "package.json").read_text().strip())['versio
|
||||||
# print('>', sys.executable, *sys.argv)
|
# print('>', sys.executable, *sys.argv)
|
||||||
|
|
||||||
|
|
||||||
class CustomTest(test):
|
class DisabledTestCommand(test):
|
||||||
def run(self):
|
def run(self):
|
||||||
# setup.py test is deprecated, disable it here by force so stdeb doesnt run it
|
# setup.py test is deprecated, disable it here by force so stdeb doesnt run it
|
||||||
#super().run()
|
print('Use the ./bin/test.sh script to run tests, not setup.py test.')
|
||||||
pass
|
|
||||||
|
|
||||||
|
|
||||||
setuptools.setup(
|
setuptools.setup(
|
||||||
|
@ -129,6 +128,6 @@ setuptools.setup(
|
||||||
"Typing :: Typed",
|
"Typing :: Typed",
|
||||||
],
|
],
|
||||||
cmdclass={
|
cmdclass={
|
||||||
"test": CustomTest,
|
"test": DisabledTestCommand,
|
||||||
},
|
},
|
||||||
)
|
)
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue