Files
release/src/test.py
David Übler bf30b4defe
All checks were successful
run tests / check (push) Successful in 27s
run tests / release (push) Successful in 15s
Implementierung v0
2025-12-12 11:00:11 +01:00

11 lines
248 B
Python
Executable File

#!/usr/bin/env python3
import logging
import unittest
logging.basicConfig(level=logging.ERROR)
from release.tests.context import * # noqa
from release.tests.project import * # noqa
from release.tests.versioning import * # noqa
unittest.main()