mirror of
https://github.com/sshuttle/sshuttle.git
synced 2024-11-07 16:44:23 +01:00
10 lines
132 B
Bash
Executable File
10 lines
132 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
cd "$(dirname "$0")/.."
|
|
|
|
export PYTHONPATH=.
|
|
|
|
set -x
|
|
python -m flake8 sshuttle tests
|
|
python -m pytest .
|