Add workflow for testing python setup
This commit is contained in:
parent
18312707fe
commit
67ddca1d9c
33 changed files with 495 additions and 0 deletions
|
|
@ -0,0 +1,2 @@
|
|||
# non-existing package
|
||||
ajsdiofjasodinfkajsndfoiuqwhefoanisdfojnasdofas
|
||||
|
|
@ -0,0 +1,2 @@
|
|||
# valid package with invalid version
|
||||
requests==10000
|
||||
|
|
@ -0,0 +1 @@
|
|||
requests==1.2.3
|
||||
|
|
@ -0,0 +1 @@
|
|||
print('hello')
|
||||
|
|
@ -0,0 +1 @@
|
|||
requests==1.2.3
|
||||
3
python-setup/tests/requirements/requests-2/setup.py
Normal file
3
python-setup/tests/requirements/requests-2/setup.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# fake setup.py with Trove classifier to fool Python extractor to believe this is Python 2 for sure
|
||||
|
||||
# Programming Language :: Python :: 2.7
|
||||
|
|
@ -0,0 +1 @@
|
|||
requests==1.2.3
|
||||
3
python-setup/tests/requirements/requests-3/setup.py
Normal file
3
python-setup/tests/requirements/requests-3/setup.py
Normal file
|
|
@ -0,0 +1,3 @@
|
|||
# fake setup.py with Trove classifier to fool Python extractor to believe this is Python 3 for sure
|
||||
|
||||
# Programming Language :: Python :: 3.7
|
||||
Loading…
Add table
Add a link
Reference in a new issue