A package for producing Gradescope-compatible results.json files with Pytest tests.
At the top of the file where you define your tests, put:
import pytest_utils
from pytest_utils.decorators import max_score, visibility, tags
Then annotate your tests using the provided decorators.
To set the maximum score for a test:
@max_score(value)
def test_a():
Where value
is a numeric value. Default value is 0.
To set the visibility of a test:
@visibility(value)
def test_a():
Where value
is 'visible', 'hidden', 'after_due_date', or 'after_published.' Default value is 'visible.'
To add extra tags to a test:
@tags(value)
def test_a():
Where value
is a string array. Default value is an empty array.
To run locally:
> git clone https://github.com/ucsb-gradescope-tools/pytest_utils.git
> cd pytest_utils
> pip3 install -e .
Then, in the directory where your test_assignment.py
lives:
> pytest
The results will be written to results.json.
The assignment is to create a file called assignment.py
with a function hello()
which returns "hello". The test_assignment.py
file is:
import pytest_utils
from pytest_utils.decorators import max_score, visibility, tags
from assignment import *
class TestAssignment(object):
@max_score(10)
def test_one(self):
assert(hello() == "hello")