We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 4665c41 commit 438284bCopy full SHA for 438284b
MiniGo/src/test.sh
@@ -74,16 +74,16 @@ case "$1" in
74
echo "<<< RUNNING ALL TESTS >>>"
75
echo ""
76
echo "Running lexical analysis tests..."
77
- python main.py test LexerSuite
+ coverage run --append main.py test LexerSuite
78
79
echo "Running syntax analysis tests..."
80
- python main.py test ParserSuite
+ coverage run --append main.py test ParserSuite
81
82
echo "Running AST generation tests..."
83
- python main.py test ASTGenSuite
+ coverage run --append main.py test ASTGenSuite
84
85
echo "Running semantic analysis tests..."
86
- python main.py test CheckSuite
+ coverage run --append main.py test CheckSuite
87
88
;;
89
clean)
0 commit comments