DUNE-DAQ
DUNE Trigger and Data Acquisition software
Loading...
Searching...
No Matches
test_all.py
Go to the documentation of this file.
1#!/usr/bin/env python
2# vim: set fileencoding=utf-8 :
3# DUNE DAQ modification notice:
4# This file has been modified from the original ATLAS config source for the DUNE DAQ project.
5# Fork baseline commit: 67a24e731 (2022-10-27).
6# Renamed since fork: yes (from python/tests/test_all.py to scripts/test_all.py).
7
8# Created by Andre Anjos <andre.dos.anjos@cern.ch>
9# Wed 24 Oct 2007 01:55:04 PM CEST
10
11"""Run all unittests integrated
12"""
13
14from test_configuration import *
15from test_conffwkobject import *
16from test_dal import *
17
18if __name__ == "__main__":
19 import sys
20 sys.argv.append('-v')
21 unittest.main()