Skip to content
Snippets Groups Projects
ci_check_code.sh 486 B
Newer Older
#! /bin/bash -ex
Jeremy M Fee's avatar
Jeremy M Fee committed
PYTHON_VERSION=${PYTHON_VERSION:-"3.8"}


if [ -f "/etc/profile.d/conda.sh" ]; then
  # Add conda to path
  source /etc/profile.d/conda.sh
fi

# Install Project Dependencies
conda config --add channels conda-forge
conda install python=${PYTHON_VERSION} obspy pycurl
pip install pipenv
pipenv --site-packages install --dev --pre --skip-lock

# Run Code Checks
pipenv run black --check .
pipenv run pytest --cov-report xml:cov.xml --cov=geomagio
pipenv run safety check