forked from Georg/pyacl
Georg Pfuetzenreuter
97299af765
Align with the other script which is already under scripts/. Signed-off-by: Georg Pfuetzenreuter <mail@georg-pfuetzenreuter.net>
12 lines
320 B
Bash
Executable File
12 lines
320 B
Bash
Executable File
#!/bin/sh -ex
|
|
|
|
command -v podman
|
|
wd='/work'
|
|
podman run \
|
|
-it \
|
|
--pull=always \
|
|
--rm \
|
|
-v .:/"$wd" \
|
|
registry.opensuse.org/home/crameleon/containers/containers/crameleon/pytest-acl:latest \
|
|
env PYTHONPATH=/"$wd" pytest --pdb --pdbcls=IPython.terminal.debugger:Pdb -rA -s -v -x "$wd"/tests
|