* Make monkey patch work in Python 3.6 * Update dockerfiles back to 3.6 * Lint * Do not set env variable for dockerfile * Lint
10 lines
212 B
Bash
Executable file
10 lines
212 B
Bash
Executable file
#!/bin/sh
|
|
# Resolve all server dependencies that the application requires to develop.
|
|
|
|
# Stop on errors
|
|
set -e
|
|
|
|
cd "$(dirname "$0")/.."
|
|
|
|
echo "Installing test dependencies..."
|
|
python3 -m pip install tox colorlog
|