Automation testing framework (API) - an example. Based on Python, Pytest
Python 3.6.*/3.7.*/3.8.*, Pytest 4.4.1,
virtualenv (virtual environment manager)
-- automaton-v6
|-- .gitattributes
|-- .gitignore
|-- calls.py
|-- LICENSE
|-- README.md
|-- requirements.txt
`-- tests
|-- __init__.py
|-- test_initial.py
|-- test_api.py
- Install Python
- Install and configure virtualenv
- Clone or copy (download) the repository into your virtual environment
- Activate virtual environment, move to
automaton-v6
folder, and execute commandpip install -r requirements.txt
- Open terminal window
- Move to virtual environment folder
- Activate virtual environment
- Move to
automaton-v6
folder - Execute
pytest
Python 3.6 / Python 3.7 / Python 3.8
virtualenv
GitHub, cloning repository
Pytest