No description
- Python 100%
Updated unit test coverage percentage from 96% to 97%. Clarified grading issue with gradebot authorization. |
||
|---|---|---|
| src | ||
| tests | ||
| .gitignore | ||
| .python-version | ||
| LICENSE.md | ||
| pyproject.toml | ||
| README.md | ||
| requirements.txt | ||
| testClient.png | ||
| TestCoverage.png | ||
| uv.lock | ||
JWKS Server
Setup
For this program to run you must have python installed and be able to install the dependencies of the program,
To run the program install the dependincies in the requirements.txt:
pip install -r requirements.txt
Then you can run the server with:
python src/server.py
Unit Tests
There is about 97% of the code covered currently by unit test. The only section of code that isn't covered by tests currently is the key gen
There however is not much to test in the function as all it does is return keys that was generated.

