mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 13:56:49 +00:00
10 lines
143 B
Bash
Executable File
10 lines
143 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
export REDIS_HOST=localhost
|
|
export MEMCACHED_HOST=localhost
|
|
|
|
rm -f .coverage
|
|
pip install -r requirements-dev.txt
|
|
make test
|