DOC add instructions for syncing data #86
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: null | |
env: | |
PY_COLORS: "1" | |
jobs: | |
tests: | |
name: tests | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- uses: conda-incubator/setup-miniconda@v2 | |
with: | |
channels: conda-forge,defaults | |
channel-priority: strict | |
show-channel-urls: true | |
miniforge-version: latest | |
miniforge-variant: Mambaforge | |
python-version: "3.10" | |
use-mamba: true | |
- name: configure conda and install code | |
shell: bash -el {0} | |
run: | | |
mamba install --yes \ | |
--file=requirements.txt \ | |
--file=requirements-dev.txt | |
python -m pip install -v --no-deps --no-build-isolation -e . | |
- name: test versions | |
shell: bash -el {0} | |
run: | | |
pip uninstall des-archive-access --yes | |
[[ $(python setup.py --version) != "0.0.0" ]] || exit 1 | |
rm -rf dist/* | |
python setup.py sdist | |
pip install --no-deps --no-build-isolation dist/*.tar.gz | |
pushd .. | |
python -c "import des_archive_access; assert des_archive_access.__version__ != '0.0.0'" | |
popd | |
pip uninstall des-archive-access --yes | |
rm -rf dist/* | |
python -m build --sdist . --outdir dist | |
pip install --no-deps --no-build-isolation dist/*.tar.gz | |
pushd .. | |
python -c "import des_archive_access; assert des_archive_access.__version__ != '0.0.0'" | |
popd | |
pip uninstall des-archive-access --yes | |
python -m pip install -v --no-deps --no-build-isolation -e . | |
- name: test | |
shell: bash -el {0} | |
run: | | |
pytest -vvs tests | |
- name: cli tests | |
shell: bash -el {0} | |
run: | | |
des-archive-access-download --help | |
des-archive-access-download-metadata --help | |
des-archive-access-make-token --help | |
des-archive-access --help |