File: test-command.sh

package info (click to toggle)
python-ulmo 0.8.8%2Bdfsg1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,348 kB
  • sloc: python: 6,100; makefile: 144; sh: 13
file content (17 lines) | stat: -rwxr-xr-x 499 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
export HOME="$AUTOPKGTEST_TMP"
unset http_proxy
unset https_proxy
unset no_proxy

# Run build-time tests
for py in $(py3versions -s 2> /dev/null)
do
  ${py} -m pytest -k \
    "not lcra and not cpc_drought and not usace_rivergages and not usgs_ned \
    and not cirs and not noaa_goes and not twc_kbdi and not usace_swtwc \
    and not usgs_nwis and not waterml_v1_1 and not wof \
    and not cdec_historical and not his_central \
    and not test_get_data and not test_get_station"
done