Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikita-filonov/sample_api_testing
https://github.com/nikita-filonov/sample_api_testing
allure allure-report automation http-client jsonschema pydantic pytest python requests test-automation testing
Last synced: about 20 hours ago
JSON representation
- Host: GitHub
- URL: https://github.com/nikita-filonov/sample_api_testing
- Owner: Nikita-Filonov
- License: apache-2.0
- Created: 2023-01-07T17:43:20.000Z (almost 2 years ago)
- Default Branch: main
- Last Pushed: 2023-10-08T18:28:58.000Z (about 1 year ago)
- Last Synced: 2024-11-07T10:03:06.644Z (about 20 hours ago)
- Topics: allure, allure-report, automation, http-client, jsonschema, pydantic, pytest, python, requests, test-automation, testing
- Language: Python
- Homepage:
- Size: 1020 KB
- Stars: 27
- Watchers: 2
- Forks: 17
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Sample API testing
[Demo allure report](https://nikita-filonov.github.io/sample_api_testing/)
**Project setup**
```
git clone https://github.com/Nikita-Filonov/sample_api_testing.git
cd sample_api_testingpip install virtualenv
virtualenv venv
source venv/bin/activatepip install -r requirements.txt
```**Starting auto tests**
```
python -m pytest --alluredir=./allure-resultsallure serve
or
allure generate
```