Skip to content
This repository was archived by the owner on Dec 14, 2024. It is now read-only.

Commit efb2ebd

Browse files
committed
Update credentials
1 parent 7484dcb commit efb2ebd

File tree

4 files changed

+13
-13
lines changed

4 files changed

+13
-13
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@
88
---
99

1010
<p align="center">
11-
<a href="https://github.com/zmievsa//autograder/actions?query=workflow%3ATests+event%3Apush+branch%3Amain" target="_blank">
12-
<img src="https://github.com/zmievsa//autograder/actions/workflows/test.yaml/badge.svg?branch=main&event=push" alt="Test">
11+
<a href="https://github.com/zmievsa/autograder/actions?query=workflow%3ATests+event%3Apush+branch%3Amain" target="_blank">
12+
<img src="https://github.com/zmievsa/autograder/actions/workflows/test.yaml/badge.svg?branch=main&event=push" alt="Test">
1313
</a>
1414
<a href="https://codecov.io/gh/ovsyanka83/autograder" target="_blank">
1515
<img src="https://img.shields.io/codecov/c/github/ovsyanka83/autograder?color=%2334D058" alt="Coverage">
@@ -31,7 +31,7 @@
3131
* Can grade C, C++, Java, and Python code in regular mode
3232
* Can grade any programming language in stdout-only mode
3333
* A file with testcase grades and details can be generated for each student
34-
* You can customize the total points for the assignment, maximum running time of student's program, file names to be considered for grading, formatters for checking student stdout, and [so much more](https://github.com/zmievsa//autograder/blob/master/autograder/default_config.toml).
34+
* You can customize the total points for the assignment, maximum running time of student's program, file names to be considered for grading, formatters for checking student stdout, and [so much more](https://github.com/zmievsa/autograder/blob/master/autograder/default_config.toml).
3535
* [Anti Cheating capabilities](https://ovsyanka83.github.io/autograder/#/?id=anti-cheating) that make it nearly impossible for students to cheat
3636
* Grading submissions in multiple programming languages at once
3737
* JSON result output supported if autograder needs to be integrated as a part of a larger utility

docs/README.md

Lines changed: 8 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
<a href="https://github.com/zmievsa//autograder/actions?query=workflow%3ATests+event%3Apush+branch%3Amain" target="_blank">
2-
<img src="https://github.com/zmievsa//autograder/actions/workflows/test.yaml/badge.svg?branch=main&event=push" alt="Test">
1+
<a href="https://github.com/zmievsa/autograder/actions?query=workflow%3ATests+event%3Apush+branch%3Amain" target="_blank">
2+
<img src="https://github.com/zmievsa/autograder/actions/workflows/test.yaml/badge.svg?branch=main&event=push" alt="Test">
33
</a>
44
<a href="https://codecov.io/gh/ovsyanka83/autograder" target="_blank">
55
<img src="https://img.shields.io/codecov/c/github/ovsyanka83/autograder?color=%2334D058" alt="Coverage">
@@ -36,7 +36,7 @@
3636
* Can grade C, C++, Java, and Python code in regular mode
3737
* Can grade any programming language in stdout-only mode
3838
* A file with testcase grades and details can be generated for each student
39-
* You can customize the total points for the assignment, maximum running time of student's program, file names to be considered for grading, formatters for checking student stdout, and [so much more](https://github.com/zmievsa//autograder/blob/master/autograder/default_config.toml).
39+
* You can customize the total points for the assignment, maximum running time of student's program, file names to be considered for grading, formatters for checking student stdout, and [so much more](https://github.com/zmievsa/autograder/blob/master/autograder/default_config.toml).
4040
* [Anti Cheating capabilities](#anti-cheating) that make it nearly impossible for students to cheat
4141
* Grading submissions in multiple programming languages at once
4242
* JSON result output supported if autograder needs to be integrated as a part of a larger utility
@@ -76,12 +76,12 @@
7676

7777
## Usage
7878

79-
1) Create tests directory in the same directory as student submissions. Its structure is shown in [examples](https://github.com/zmievsa//autograder/tree/master/examples). (can be automatically created using the [guide](#quickstart))
80-
1) **Optional** files that can be automatically created by [--guide](#quickstart) CLI option and whose use is demostrated by [examples](https://github.com/zmievsa//autograder/tree/master/examples):
79+
1) Create tests directory in the same directory as student submissions. Its structure is shown in [examples](https://github.com/zmievsa/autograder/tree/master/examples). (can be automatically created using the [guide](#quickstart))
80+
1) **Optional** files that can be automatically created by [--guide](#quickstart) CLI option and whose use is demostrated by [examples](https://github.com/zmievsa/autograder/tree/master/examples):
8181
1) Input (stdin) and expected output (**stdout**) text files in their respective directories for each testcase. If a test does not require input and/or stdout, the respective text file is also not required.
82-
1) Create [config.ini](https://github.com/zmievsa//autograder/blob/master/autograder/default_config.toml) and change configuration to fit your needs (If you do not include some fields, autograder will use the respective fields from default_config.ini)
83-
1) Create [stdout_formatters.py](https://github.com/zmievsa//autograder/blob/master/autograder/default_stdout_formatters.py) and edit it to fit your needs. They will format student's stdout to allow you to give credit to students even if their stdout is not exactly the same as expected.
84-
1) Write testcases as described [below](#writing-testcases) using [examples](https://github.com/zmievsa//autograder/tree/master/examples) as reference.
82+
1) Create [config.ini](https://github.com/zmievsa/autograder/blob/master/autograder/default_config.toml) and change configuration to fit your needs (If you do not include some fields, autograder will use the respective fields from default_config.ini)
83+
1) Create [stdout_formatters.py](https://github.com/zmievsa/autograder/blob/master/autograder/default_stdout_formatters.py) and edit it to fit your needs. They will format student's stdout to allow you to give credit to students even if their stdout is not exactly the same as expected.
84+
1) Write testcases as described [below](#writing-testcases) using [examples](https://github.com/zmievsa/autograder/tree/master/examples) as reference.
8585
1) Run `autograder run path/to/submissions/dir` from command line.
8686

8787
### Writing testcases

docs/_coverpage.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
> A simple, secure, and versatile way to automatically grade programming assignments
44
5-
[GitHub](https://github.com/zmievsa//autograder/)
5+
[GitHub](https://github.com/zmievsa/autograder/)
66
[Get Started](#Installation)
77

88
![color](#f7f7ee)

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ authors = ["Stanislav Zmiev <[email protected]>"]
66
license = "GPL-3.0"
77
readme = "README.md"
88
documentation = "https://ovsyanka83.github.io/autograder/"
9-
repository = "https://github.com/zmievsa//autograder"
9+
repository = "https://github.com/zmievsa/autograder"
1010
# this might be unnecessary, I don't remember and am too lazy too google
1111
include = ["autograder/**/*"]
1212
classifiers = [

0 commit comments

Comments
 (0)