https://github.com/lackary/apis-testing
This is a drill that implements APIs client testing with pytest, including Integration Test
https://github.com/lackary/apis-testing
api-client cicd pytest-allure pytest-cov pytest-html
Last synced: about 1 month ago
JSON representation
This is a drill that implements APIs client testing with pytest, including Integration Test
- Host: GitHub
- URL: https://github.com/lackary/apis-testing
- Owner: lackary
- License: apache-2.0
- Created: 2025-05-22T00:50:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2025-07-17T02:24:04.000Z (8 months ago)
- Last Synced: 2025-07-17T04:51:33.959Z (8 months ago)
- Topics: api-client, cicd, pytest-allure, pytest-cov, pytest-html
- Language: Python
- Homepage:
- Size: 1.16 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Testing

## Installation and Setup
- Install pyenv by brew (MacOS)
- Set up your shell environment for Pyenv for pyenv (See [detail](https://github.com/pyenv/pyenv/tree/master?tab=readme-ov-file#installation))
```sh
export PYENV_ROOT="$HOME/.pyenv"
[[ -d $PYENV_ROOT/bin ]] && export PATH="$PYENV_ROOT/bin:$PATH"
eval "$(pyenv init - zsh)"
```
- Restart your shell or terminal and check it
```sh
pyenv local $your_python_version
source ~/.zshrc
pyenv versions
system
* $your_python_version
python --version
```
- Set virtual environment by venv
```sh
python -m venv .venv
source .venv/bin/activate
```
- Install packages by pip
```sh
pip install -r requirements.txt
```