mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 13:42:03 +00:00
11 lines
241 B
Bash
Executable File
11 lines
241 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# fix for Python 3.7 on Travis
|
|
# https://travis-ci.community/t/build-error-for-python-3-7-on-two-different-projects/12895/3
|
|
pip install -U importlib_metadata
|
|
|
|
rm -f .coverage
|
|
pip install -r requirements-dev.txt
|
|
make test
|