atcoder-auto-tester

license: MIT GitHub version

An auto tester for AtCoder. This tool monitors files and automatically runs tests when it detects file changes.

Prerequisites

Installation

terminal $ git clone https://github.com/arkark/atcoder-auto-tester $ cd atcoder-auto-tester $ cargo install --path .

Usage

  1. Create .config.toml.
  2. Execute: $ atcoder-auto-tester.
  3. Solve problems :)

.config.toml

Set .config.toml for AGC001 as follows:

C++

toml command = "sh -c 'g++ {}.cpp && ./a.out'" file_name = "{}.cpp" task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"

D

toml command = "rdmd {}.d" file_name = "{}.d" task_url = "https://atcoder.jp/contests/agc001/tasks/agc001_{}"

Help

```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 Set a config file name [default: .config.toml] -d, --test-directory Set a directory for saving test cases [default: .test] -t, --timeout Set a time limit for test execution [unit: seconds] [default: 5] ```

License

MIT