This script helps you to migrate your test cases from TestIT to Qase. It's written in Python 3.11 and uses Qase API and TestIT API.
pip install -r requirements.txt
Create a new config file from the example or use template:
{
"qase": {
"api_token": "<QASE_API_TOKEN>",
"host": "<QASE_API_HOST|Default:qase.io>",
"ssl": true,
"enterprise": false
},
"testit": {
"host": "<TESTIT_HOST>",
"token": "<TESTIT_TOKEN>",
}
}
Required fields to fill:
qase.host
- Qase hostqase.api
- API token from Qaseqase.scim
- SCIM token from Qaseqase.ssl
- If set totrue
migrator will usehttps
instead ofhttp
in all requeststestit.host
- URL of your TestIT instancetestit.token
- TestIT API token
python start.py