A student homework/exam evaluation framework build on pythons unittest framework.
Reason this release was yanked:
Experimental package. Don't use.
Project description
Unitgrade
Unitgrade is an automatic report and exam evaluation framework that enables instructors to offer automatically evaluated programming assignments.
Unitgrade is build on pythons unittest
framework so that the tests can be specified in a familiar syntax and will integrate with any modern IDE. What it offers beyond unittest
is the ability to collect tests in reports (for automatic evaluation) and an easy and 100% safe mechanism for verifying the students results and creating additional, hidden tests. A powerful cache system allows instructors to automatically create test-answers based on a working solution.
- 100% Python
unittest
compatible - No external configuration files, just write a
unittest
- No unnatural limitations: If you can
unittest
it, it works. - Granular security model:
- Students get public
unittests
for easy development of solutions - Students get a tamper-resistant file to create submissions which are uploaded
- Instructors can automatically verify the students solution using Docker VM and by running hidden tests
- Allow export of assignments to Autolab (no
make
file mysteries!)
- Students get public
- Tests are quick to run and will integrate with your IDE
Installation
Unitgrade can be installed through pip using
pip install git+https://git@gitlab.compute.dtu.dk/tuhe/unitgrade.git
This will install unitgrade in your site-packages directory. If you want to upgrade an old installation of unitgrade:
pip install git+https://git@gitlab.compute.dtu.dk/tuhe/unitgrade.git --upgrade
If you are using anaconda+virtual environment you can install it as
source activate myenv
conda install git pip
pip install git+https://git@gitlab.compute.dtu.dk/tuhe/unitgrade.git
Alternatively, simply use git-clone of the sources and add unitgrade to your python path.
When you are done, you should be able to import unitgrade:
import unitgrade
Testing installation
I have provided an example project which illustrates all main features in a self-contained manner and which should work immediately upon installation. The source can be found here: https://lab.compute.dtu.dk/tuhe/unitgrade/-/tree/master/cs101courseware_example To run the example, first start a python console:
python
Then run the code
from cs101courseware_example import instructions
This will print on-screen instructions for how to use the system tailored to your user-specific installation path.
Evaluating a report
Homework is broken down into reports. A report is a collection of questions which are individually scored, and each question may in turn involve multiple tests. Each report is therefore given an overall score based on a weighted average of how many tests are passed. In practice, a report consist of an ordinary python file which they simply run. It looks like this (to run this on your local machine, follow the instructions in the previous section):
python cs101report1.py
The file cs101report1.py
is just an ordinary, non-obfuscated file which they can navigate and debug using a debugger. The file may contain the homework, or it may call functions the students have written. Running the file creates console output which tells the students their current score for each test:
Starting on 02/12/2020 14:57:06
Evaluating CS 101 Report 1
Question 1: Reversal of list
================================================================================
*** q1.1) ListReversalItem..................................................PASS
*** q1.2) ListReversalWordsItem.............................................PASS
*** Question q1............................................................. 5/5
Question 2: Linear regression and Boston dataset
================================================================================
*** q2.1) CoefficientsItem..................................................PASS
*** q2.2) RMSEItem..........................................................PASS
*** Question q2........................................................... 13/13
Finished at 14:57:06
Provisional evaluation
----------- -----
Question q1 5/5
Question q2 13/13
Total 18/18
----------- -----
Note your results have not yet been registered.
To register your results, please run the file:
>>> cs101report1_grade.py
In the same manner as you ran this file.
Once you are happy with the result, run the alternative, not-easy-to-tamper-with script called cs101report1_grade.py
:
python cs101report1_grade.py
This runs the same tests, and generates a file Report0_handin_18_of_18.token
. The file name indicates how many points you got. Upload this file to campusnet.
Why are there two scripts?
The reason why we use a standard test script, and one with the _grade.py
extension, is because the tests should both be easy to debug, but at the same time we have to prevent accidential changes to the test scripts. Hence, we include two versions of the tests.
FAQ
-
My non-grade script and the
_grade.py
script gives different number of points Since the two scripts should contain the same code, the reason is nearly certainly that you have made an (accidental) change to the test scripts. Please ensure both scripts are up-to-date and if the problem persists, try to get support. -
Why is there a
unitgrade
directory with a bunch of pickle files? Should I also upload them? No. The file contains the pre-computed test results your code is compared against. If you want to load this file manually, the unitgrade package contains helpful functions for doing so. -
I am worried you might think I cheated because I opened the '_grade.py' script/token file This should not be a concern. Both files are in a binary format (i.e., if you open them in a text editor they look like garbage), which means that if you make an accidential change, they will with all probability simply fail to work.
-
I think I might have edited the
report1.py
file. Is this a problem since one of the tests have now been altered? Feel free to edit/break this file as much as you like if it helps you work out the correct solution. In fact, I recommend you just runreport1.py
from your IDE and use the debugger to work out the current state of your program. However, since thereport1_grade.py
script contains a seperate version of the tests, please ensure yourreport1.py
file is up to date.
Debugging your code/making the tests pass
The course material should contain information about the intended function of the scripts used in the tests, and the file report1.py
should mainly be used to check which of your code is being run. In other words, first make sure your code solves the exercises, and only later run the test script which is less easy/nice to read.
However, obivously you might get to a situation where your code seems to work, but a test fails. In that case, it is worth looking into the code in report1.py
to work out what is going on.
- I am 99% sure my code is correct, but the test still fails. Why is that?
The testing framework offers a great deal of flexibility in terms of what is compared. This is either: (i) The value a function returns, (ii) what the code print to the console (iii) something derived from these.
Since the test might compare the console output, i.e. what you generate using
print("...")
-statements, innnocent changes to the script, like an extra print statement, can cause the test to fail, which is counter-intuitive. For this reason, please look at the error message carefully (or the code inreport1.py
) to understand what is being compared.
One possibility that might trick some is that if the test compares a value computed by your code, the datatype of that value is important. For instance, a list
is not the same as a python ndarray
, and a tuple
is different from a list
. This is the correct behavior of a test: These things are not alike and correct code should not confuse them.
-
The
report1.py
class is really confusing. I can see the code it runs on my computer, but not the expected output. Why is it like this? To make sure the desired output of the tests is always up to date, the tests are computed from a working version of the code and loaded from the disk rather than being hard-coded. -
How do I see the output of my programs in the tests? Or the intended output? There are a number of console options available to help you figure out what your program should output and what it currently outputs. They can be found using:
python report1.py --help
Note these are disabled for thereport1_grade.py
script to avoid confusion. It is not recommended you use the grade script to debug your code. -
How do I see the output generated by my scripts in the IDE? The file
unitgrade/unitgrade.py
contains all relevant information. Look at theQItem
class and the functionget_points
, which is the function that strings together all the tests. -
Since I cannot read the
.token
file, can I trust it contains the same number of points internally as the file name indicate? Yes.
Privacy/security
-
I managed to reverse engineer the
report1_grade.py
/*.token
files in about 30 minutes. If the safety measures are so easily broken, how do you ensure people do not cheat? That the scriptreport1_grade.py
is difficult to read is not the principle safety measure. Instead, it ensures there is no accidential tampering. If you muck around with these files and upload the result, we will very likely know. -
I have private data on my computer. Will this be read or uploaded? No. The code will look for and upload your solutions, but it will not read/look at other directories in your computer. In the example provided with this code, this means you should expect unitgrade to read/run all files in the
cs101courseware_example
-directory, but no other files on your computer. So as long as you keep your private files out of the base courseware directory, you should be fine. -
Does this code install any spyware/etc.? Does it communicate with a website/online service? No. Unitgrade makes no changes outside the courseware directory and it does not do anything tricky. It reads/runs code and write the
.token
file. -
I still have concerns about running code on my computer I cannot easily read Please contact me and we can discuss your specific concerns.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file unitgrade-tuhe-0.0.1.tar.gz
.
File metadata
- Download URL: unitgrade-tuhe-0.0.1.tar.gz
- Upload date:
- Size: 21.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | c55a5c08eb9c5f225a24ef04c052d1d40cbaaa1e938329b64c211a8db69a8f40 |
|
MD5 | c8eb85b6db96ed8e87d34ecb91dbb839 |
|
BLAKE2b-256 | 891e601908481717c4228eae4c884222bac24ad2769c781832000f5ef60467a7 |
File details
Details for the file unitgrade_tuhe-0.0.1-py3-none-any.whl
.
File metadata
- Download URL: unitgrade_tuhe-0.0.1-py3-none-any.whl
- Upload date:
- Size: 17.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.4.2 importlib_metadata/4.8.1 pkginfo/1.7.1 requests/2.25.1 requests-toolbelt/0.9.1 tqdm/4.56.0 CPython/3.8.6
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0b5c2d4d30ff75f01368a27e8b172cc2d1ba3d90cc90c79c5098f41bd7082ecb |
|
MD5 | b2822b2c2c1da393e96c5580fa99bb5a |
|
BLAKE2b-256 | 963bd0c1645d07d5df34c6a30198d5faddec4f0bbd37acfb70e7f164613319e6 |