File: testsuite

package info (click to toggle)
rpmlint 2.8.0-1
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 8,308 kB
  • sloc: python: 20,622; ansic: 2,511; xml: 1,272; makefile: 17; sh: 4
file content (16 lines) | stat: -rw-r--r-- 379 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
#!/bin/bash

# Run the included testsuite in rpmlint source tree

set -e

cd $(dirname $0)/../..
#RPMLINT_BIN=/usr/bin/rpmlint ./test.sh
#python3 -m pytest
# Some upstream testsuite is unreasonable (e.g., uses py36/py37)
# Some testsuite needs binary files
# Only run some testsuite here
# Needs more help in autopkgtest maintenance
python3 -m pytest ./test/test_cli.py

exit $?