Remove tests that should fail

This commit is contained in:
David Verdeguer
2020-09-29 10:33:25 +02:00
parent 5e2245cc23
commit 4e39b768c7
11 changed files with 0 additions and 123 deletions

View File

@@ -1,11 +0,0 @@
from setuptools import setup
# has fake Trove classifier to fool Python extractor to believe this is Python 3 for sure
# Programming Language :: Python :: 3.7
setup(
name="example-setup.py",
install_requires=[],
extras_require={"all": ["requests==1.2.3"]}
)

View File

@@ -1 +0,0 @@
raise Exception("some kind of error")

View File

@@ -1,6 +0,0 @@
from setuptools import setup
setup(
name="example-setup.py",
install_requires=["requests==10000"],
)

View File

@@ -1,12 +0,0 @@
from setuptools import setup
# has fake Trove classifier to fool Python extractor to believe this is Python 3 for sure
# Programming Language :: Python :: 3.7
setup(
name="example-setup.py",
install_requires=["requests==1.2.3"],
python_requires=">=2.7, <3",
)