An auto tester for AtCoder. This tool monitors files and automatically runs tests when it detects file changes.
terminal
$ git clone https://github.com/arkark/atcoder-auto-tester
$ cd atcoder-auto-tester
$ cargo install --path .
.config.toml
.$ atcoder-auto-tester
.Set .config.toml
for AGC001 as follows:
toml
command = "sh -c 'g++ {}.cpp && ./a.out'"
file_name = "{}.cpp"
task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"
toml
command = "rdmd {}.d"
file_name = "{}.d"
task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"
```terminal $ atcoder-auto-tester --help atcoder-auto-tester 0.1.0 An auto tester for AtCoder. This tool monitors files and automatically runs tests when it detects file changes.
USAGE: atcoder-auto-tester [FLAGS] [OPTIONS]
FLAGS: --clean Remove the test directory --login Login to AtCoder -h, --help Print help information -v, --version Print version information
OPTIONS:
-f, --config-file