Skip to content

Commit

Permalink
Update version to 2021.9.0
Browse files Browse the repository at this point in the history
  • Loading branch information
Lnk2past committed Sep 11, 2021
1 parent dfd7d76 commit b1c521c
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

[![Build Status](https://github.com/Lnk2past/contest/workflows/Build/badge.svg)](https://github.com/Lnk2past/contest/actions)
[![PyPI version shields.io](https://img.shields.io/pypi/v/contest.svg)](https://pypi.python.org/pypi/contest/)
![Python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8-red)
![Python](https://img.shields.io/badge/python-3.6%20%7C%203.7%20%7C%203.8%20%7C%203.9-red)
![Platforms](https://img.shields.io/badge/platform-windows%20%7C%20mac%20%7C%20linux-yellow)

A `CON`sole application `TEST`er
Expand All @@ -13,7 +13,7 @@ A `CON`sole application `TEST`er

### Motivation

I wrote this for a class that I teach to help with grading. Given the configuration driven nature of it (how else should a testing framework/tool work?) `contest` lets me define multiple test cases for particular programs (assignments) so that not only is grading easier for me, but I can integrate assignments into a grading pipeline so that I can do as little work as possible and my students can get immediate feedback on submissions. Assignments here are usually single-file programs that are not necessarily unit-testable without adding in boilderplate and nonstandard language features. Letting students build normal programs and then verify their behavior is the goal.
I wrote this for a class that I teach to help with grading. Given the configuration driven nature of it (how else should a testing framework/tool work?) `contest` lets me define multiple test cases for particular programs (assignments) so that not only is grading easier for me, but I can integrate assignments into a grading pipeline so that I can do as little work as possible and my students can get immediate feedback on submissions. Assignments here are usually single-file programs that are not necessarily unit-testable without adding in boilerplate and nonstandard language features. Letting students build normal programs and then verify their behavior is the goal.

## Installation

Expand Down
2 changes: 1 addition & 1 deletion contest/__version__.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
__title__ = 'contest'
__description__ = 'A console application tester.'
__url__ = 'https://github.com/Lnk2past/contest'
__version__ = '2020.1.0'
__version__ = '2021.9.0'
__author__ = 'Lnk2past'
__license__ = 'MIT'

0 comments on commit b1c521c

Please sign in to comment.