$ python3.9 -m venv ./venv/ # Create the Virtual Enviroment.
$ source venv/bin/activate # Activate the Virtual Enviroment Just Created.
From inside the virtual env:
$ pip install -r requirements.txt
$ podman rmi tackle-integration-tests # If needed
$ podman build -f Dockerfile -t tackle-integration-tests && podman run -e TACKLE_USER='' -e TACKLE_PASSWORD='' -e TACKLE_URL='http://' tackle-integration-tests
$ export TACKLE_USER=xxx && export TACKLE_PASSWORD= && export TACKLE_URL= (including http:// Or https:// and without no closing /)
$ python3.9 -m pytest tests/test_tags.py -m -k
$ python3.9 get-token.py --user=admin --password=XXXX --host (including http:// Or https:// and without no closing /)
TBD at this point, simply branch and send PRs the is a tox file, so you can try running tox, it might have not been tested yet.