* tox cleanup * 1 tox step * Revert pytest sugar changes * Tox: make pylint its own task * Bump Travis to 30 minutes timeout
10 lines
121 B
Bash
Executable file
10 lines
121 B
Bash
Executable file
#!/bin/sh
|
|
# Setups the repository.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
script/bootstrap
|
|
|
|
pip3 install -e .
|