File: basic-tests

package info (click to toggle)
python-irodsclient 3.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,352 kB
  • sloc: python: 16,650; xml: 525; sh: 104; awk: 5; sql: 3; makefile: 3
file content (13 lines) | stat: -rwxr-xr-x 279 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

set -e

for py in $(py3versions -s 2>/dev/null)
do
cd "$AUTOPKGTEST_TMP"
echo "Testing with $py:"
$py -c "import irods; print(irods)"
# $py -m irods.test.runner 
# Can't run the tests without access to a iRODS instance, and the iRODS server is not yet in Debian
done