This is a passion project that grew from several scripts I used to help me grade college C-language programming assignments. I still need to clean up several things from the times I ‘just needed something to do X 10 days ago’. If you find this software helpful, please let me know!
Overview¶
docs |
|
|---|---|
tests |
|
package |
An assignment grading helper
Free software: GNU Lesser General Public License v3 or later (LGPLv3+)
Based off of https://github.com/ionelmc/cookiecutter-pylibrary.
Installation¶
pip install agh
You can also install the in-development version with:
pip install https://github.com/Tuck-Williamson/python-agh/archive/main.zip
Documentation¶
Development¶
To run all the tests run:
tox
Note, to combine the coverage data from all the tox environments run:
Windows |
set PYTEST_ADDOPTS=--cov-append tox
|
|---|---|
Other |
PYTEST_ADDOPTS=--cov-append tox
|