• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1#!/bin/bash
2
3set -e
4cd $(dirname $(realpath $0))
5echo Running python unittests
6python3 -m unittest discover parser/test
7echo Running large tests
8./parser/test/large_test.sh
9echo All tests passed
10