File: python3

package info (click to toggle)
xarray-sentinel 0.9.5%2Bds-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 21,476 kB
  • sloc: xml: 77,744; python: 2,075; makefile: 37; sh: 31
file content (17 lines) | stat: -rw-r--r-- 352 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
#!/bin/sh
set -efu

PYS=${PYS:-"$(py3versions -s 2>/dev/null)"}
TESTPKG=${TESTPKG:-xarray-sentinel}
TESTDIR=${PWD}/tests
cd "$AUTOPKGTEST_TMP"

for py in $PYS; do
    echo "=== $py ==="
    $py -m pytest -v -k "\
not test_mosaic_slc_iw \
and not test_to_group_netcdf \
and not test_open_dataset_zip_data \
and not test_to_group_zarr" \
${TESTDIR}
done