mirror of
https://github.com/sshuttle/sshuttle.git
synced 2025-01-26 07:48:56 +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 .
|