File: run_unittest.bash

package info (click to toggle)
cclib-data 1.6.2-2
  • links: PTS, VCS
  • area: non-free
  • in suites: bookworm, bullseye, sid
  • size: 87,912 kB
  • sloc: python: 16,440; sh: 131; makefile: 79; cpp: 31
file content (14 lines) | stat: -rw-r--r-- 387 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/env bash

# run_unittest.bash: Run cclib tests using the built-in `unittest` module.

set -euxo pipefail

python -m test.test_bridge &&
python -m test.test_io &&
python -m test.test_method &&
python -m test.test_parser &&
python -m test.test_utils &&
python -m test.test_data --terse &&
cd data && bash regression_download.sh &&
cd .. && python -m test.regression --traceback