Skip to main content

aga grades assignments

Project description

aga

tests lints Codecov PyPI Read the Docs License

aga (aga grades assignments) is a tool for easily producing autograders for python programming assignments, originally developed for Reed College's CS1 course.

Installation

Install from pip:

pip install aga

Quickstart

In square.py (or any python file), write:

from aga import problem, test_case


@test_case(-3)
@test_case(100)
@test_case(2, aga_output=4)
@test_case(-2, aga_output=4)
@problem()
def square(x: int) -> int:
    """Square x."""
    return x * x

Then run aga gen square from the directory with square.py. This will generate a ZIP file suitable for upload to gradescope.

Usage

Aga relies on the notion of a golden solution to a given problem which is known to be correct. The main work of the library is to compare the output of this golden solution on some family of test inputs against the output of a student submission. To that end, aga integrates with frontends: existing classroom software which allow submission of student code. Currently, only gradescope is supported.

To use aga:

  1. Write a golden solution to some programming problem.
  2. Decorate this solution with the problem decorator.
  3. Decorate this problem with any number of test_case decorators, which take arbitrary positional or keyword arguments and pass them verbatim to the golden and submitted functions.
  4. Generate the autograder using the CLI: aga gen <function_name>.

The test_case decorator may optionally take a special keyword argument called aga_output. This allows easy testing of the golden solution: aga will not successfully produce an autograder unless the golden solution's output matches the aga_output. You should use these as sanity checks to ensure your golden solution is implemented correctly.

For complete documentation, including configuring problem and test case metadata, see the API reference.

For CLI documentation, run aga --help, or access the docs online.

Contributing

Bug reports, feature requests, and pull requests are all welcome. For details on our test suite, development environment, and more, see the developer documentation.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

aga-0.4.2.tar.gz (17.0 kB view hashes)

Uploaded Source

Built Distribution

aga-0.4.2-py3-none-any.whl (19.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page