Skip to content
This repository was archived by the owner on Feb 24, 2026. It is now read-only.

Latest commit

 

History

History
 
 

README.md

Setup test environment

python -m venv venv
source venv/bin/activate
pip install -r requirements.txt

Run tests

First activate the virtual environment:

source ./venv/bin/activate

Then run:

python -m unittest --verbose

To execute only one test, suffix with the fully qualified test name. Example:

python -m unittest tests.Tests.test_create_asset_should_not_fail