v0.8.6
Added
-
Added
SystemTestCases
variant toextend
in test suite files. (qryxip/snowchains#131, #138)System test cases are stored under
{ cache directory }/cargo-compete/system-test-cases
.
They are automatically downloaded if missing whentest
ing code.extend: - type: SystemTestCases problem: "https://atcoder.jp/contests/abc191/tasks/abc191_a"
Changed
-
cargo compete test
command without--full
option will append{ type: Text, ... }
toextend
and will create emptyin
andout
directories. (#138)❯ cargo compete n arc110 --problems a Created `arc110` package at /home/ryo/src/competitive/atcoder/./arc110 Saved 2 test cases to /home/ryo/src/competitive/atcoder/./arc110/testcases/{a.yml, a/} ❯ tree ./arc110/testcases ./arc110/testcases ├── a │ ├── in │ └── out └── a.yml 3 directories, 1 file
--- type: Batch timelimit: 2s match: Lines cases: - name: sample1 in: | 3 out: | 7 - name: sample2 in: | 10 out: | 39916801 extend: - type: Text path: "./a" in: /in/*.txt out: /out/*.txt
-
SystemTestCases
will be used for--full
option. (#138)
Fixed
- Fixed a problem where
cargo compete download
command saves nothing. (#139)