File: basic

package info (click to toggle)
gammapy 2.0.1-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,800 kB
  • sloc: python: 81,999; makefile: 211; sh: 11; javascript: 10
file content (13 lines) | stat: -rwxr-xr-x 447 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh
set -e
cd $AUTOPKGTEST_TMP

if dpkg-architecture --is i386
then
    pytest-3 --pyargs gammapy -k 'not test_parameter_name and not test_wcsmap_upsample_downsample_wcs and not test_piecewise_spatial_model'
elif dpkg-architecture --is s390x
then
    pytest-3 --pyargs gammapy -k 'not test_parameter_name and not test_obscore_structure and not test_parameters_create_table'
else
    pytest-3 --pyargs gammapy -k 'not test_parameter_name'
fi