markus-autotesting-core is a Python package containing core utilities for the MarkUs autotester. In particular, it defines common data types used by different components of the autotester.
To install the package, you can use pip:
pip install markus-autotesting-core
After installation, you can use the package in your Python scripts. Here is a simple example:
from markus_autotesting_core import core
# Example usage of core functionality
result = core.some_function()
print(result)You can run the package as a script using the following command:
python -m markus_autotesting_core
To run the tests, navigate to the project directory and use:
pytest tests/test_core.py
Contributions are welcome! Please feel free to submit a pull request or open an issue for any enhancements or bug fixes.
This project is licensed under the MIT License. See the LICENSE file for more details.