mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 13:16:44 +00:00
12 lines
317 B
Bash
Executable File
12 lines
317 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
|
|
# removed - 3.7 is EOL: https://github.com/datafolklabs/cement/issues/658
|
|
# 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
|