- 현재 Python, C, C++ 언어를 지원합니다.
- 백준에서 테스트 케이스를 가져와, 자동으로 테스트 합니다.



- MacOS, Linux
export PY_PATH="/Users/~~~/main.py"
export C_PATH="/Users/~~~/main.c"
export CPP_PATH="/Users/~~~/main.cpp"
- Windows
set PY_PATH=C:\Users\~~~/main.py
set C_PATH=C:\Users\~~~/main.c
set CPP_PATH=C:\Users\~~~/main.cpp
git clone https://github.com/chaseungjoon/BOJ-Auto-Test.git
cd BOJ-Auto-Test
pip install -r requirements.txt
python main.py 문제번호
- ~/.zshrc에 추가
# python
testpy() {
python3 /~Path_to/BOJ-Auto-Test/main.py "$1"
}
# C
testc() {
gcc -o execute $C_PATH && python3 /~Path_to/BOJ-Auto-Test/main.py "$1"
}
# C++
testcpp() {
g++ -std=c++11 -o executecpp $CPP_PATH && python3 /~Path_to/BOJ-Auto-Test/main.py "$1"
}
- 실행
testpy 1000
testc 1058
testcpp 1138