Metadata-Version: 2.1
Name: core-test-utils
Version: 1.0.0
Summary: Test utils library for python frameworks
Home-page: https://github.com/sarvesh371/test-utils
Author: Sarvesh Singh
Author-email: sarveshsingh.03@gmail.com
Project-URL: Bug Tracker, https://github.com/sarvesh371/test-utils/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
Requires-Dist: aerospike (==4.0.0)
Requires-Dist: allure-pytest (==2.8.29)
Requires-Dist: botocore (==1.23.15)
Requires-Dist: boto3 (==1.20.15)
Requires-Dist: cassandra-driver (==3.25.0)
Requires-Dist: Faker (==4.1.2)
Requires-Dist: kafka-python (==2.0.2)
Requires-Dist: kubernetes (==22.6.0)
Requires-Dist: mysql-connector-python (==8.0.27)
Requires-Dist: psycopg2 (==2.9.3)
Requires-Dist: psycopg2-binary (==2.9.3)
Requires-Dist: pytz (==2020.1)
Requires-Dist: PyYAML (==6.0)
Requires-Dist: redis (==4.2.2)
Requires-Dist: requests (==2.24.0)
Requires-Dist: testrail-api (==1.10.3)

# test-utils

**Using**

1. `python -m pip install core_test_utils`


**Buidling**

1. Increase the version in `setup.cfg` file

2. Create a file ~/.pypirc in root directory of your system and paste below data in the file.

        [distutils]
        index-servers =
                local

        [local]
        repository = https://upload.pypi.org/legacy/
 
4. After making changes in the test_utils go to source directory of code and run below command to build the wheel and push to artifactory

        - python3 -m pip install --upgrade build
        - python3 -m build
        - python3 -m pip install --upgrade twine
        - python3 -m twine upload --repository local --verbose dist/*
        - Enter the username and password of your pypi account
 
5. That's all you have to do and now you are good to use the core_test_utils in your project
  
