mirror of
https://github.com/datafolklabs/cement.git
synced 2026-02-06 13:42:03 +00:00
17 lines
365 B
Bash
Executable File
17 lines
365 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
|
|
|
|
docker-compose up -d mailpit 2>&1 >/dev/null
|
|
|
|
sleep 10
|
|
|
|
rm -f .coverage
|
|
pdm venv create
|
|
pdm install
|
|
make test
|