-
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
129 additions
and
19 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,6 @@ | |
*Tests/*.png | ||
*Tests/*driver.log | ||
Resources/* | ||
dist/* | ||
build/* | ||
testdatatable.egg-info/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
|
||
# docs - https://packaging.python.org/tutorials/packaging-projects/ | ||
|
||
1) # create package | ||
python3 setup.py sdist bdist_wheel | ||
|
||
2) # upload package to test pypi | ||
# python3 -m twine upload --repository testpypi dist/* | ||
python3 -m twine upload --repository testpypi dist/*2.2.2* | ||
|
||
3) # upload package to pypi | ||
python3 -m twine upload dist/* | ||
python3 -m twine upload dist/*2.2.2* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
|
||
# TestDataTable | ||
|
||
## About | ||
|
||
TestDataTable is a web-based application that offers an alternative to static data sheets (text files, excel, etc.). When you use static data sheets, each test script is assigned parameter values from a dedicated set of values, values are either not shared between test scripts or are duplicated in each script. In contrast, TestDataTable enables you to assign test data variable values from a single set of data to multiple scripts while allowing you to ensure each script has a unique data value. This may enable you to more accurately emulate a real-user environment. | ||
|
||
## Testing | ||
|
||
The [Regression_Tests](https://github.com/damies13/TestDataTable/blob/master/Regression_Tests) folder contains the current Regression Test Suite, I would love to hear the results of running this suite against Test Data Table on your machine, especially a Window Machine (as I don't have one) | ||
|
||
## Getting Help | ||
|
||
- [TestDataTable Documentation](https://github.com/damies13/TestDataTable/blob/master/Doc/Index.md) | ||
- [Discord](https://discord.gg/5wYA6K) | ||
- [Reporting Issues / Known Issues](https://github.com/damies13/TestDataTable/issues) | ||
|
||
## Donations | ||
|
||
If you would like to thank me for this project please use this [PayPal.me](https://paypal.me/damies13/5) link, the $5 is a suggestion, feel free to change to any amount you would like. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
import setuptools | ||
|
||
with open("README_PyPi.md", "r") as fh: | ||
long_description = fh.read() | ||
|
||
setuptools.setup( | ||
name="testdatatable", | ||
version="0.2.3", | ||
author="damies13", | ||
author_email="[email protected]", | ||
description="TestDataTable", | ||
long_description=long_description, | ||
long_description_content_type="text/markdown", | ||
url="https://github.com/damies13/TestDataTable", | ||
packages=setuptools.find_packages(), | ||
# packages=setuptools.find_packages(include=['configparser', 'setuptools', 'HTTPServer', 'sqlite3worker']), | ||
# packages=setuptools.find_packages(include=['configparser', 'HTTPServer', 'sqlite3worker']), | ||
install_requires=['configparser', 'HTTPServer', 'sqlite3worker'], | ||
classifiers=[ | ||
"Development Status :: 5 - Production/Stable", | ||
"Topic :: Software Development :: Testing", | ||
"Programming Language :: Python :: 3.7", | ||
"License :: OSI Approved :: GNU General Public License v3 (GPLv3)", | ||
"Operating System :: OS Independent", | ||
], | ||
python_requires='>=3.7', | ||
project_urls={ | ||
'Getting Help': 'https://github.com/damies13/TestDataTable#getting-help', | ||
'Say Thanks!': 'https://github.com/damies13/TestDataTable#donations', | ||
'Source': 'https://github.com/damies13/TestDataTable', | ||
}, | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
# init file for pip setup.py packaging tool to find |