dashboard
repositories
filestore
activity
search
login
docker-plugin
/
pyveth
pyveth - veth driver for Docker Engine written in Python
summary
reflog
commits
tree
tickets
docs
forks
compare
blame
|
history
|
raw
Fix compatibility with newer pip, which requires venv
Jacek Kowalski
2026-03-11
ad5ebdedd4b5b25f655f9ad6b30f62cae9e1b633
[docker-plugin/pyveth]
/
test_run.sh
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh
set -e
for file in integration/*.json; do
method=${file#*-}
method=${method%%-*}
echo ${method}
curl -X POST --data "@${file}" "http://127.0.0.1:5000/NetworkDriver.${method}"
done