Skip to content

Use reregisterurl to move datalad remotes to web #92

Use reregisterurl to move datalad remotes to web

Use reregisterurl to move datalad remotes to web #92

Workflow file for this run

name: Test
on:
pull_request:
# Due to use of staging and not be able to clean up published dandisets
# https://github.com/dandi/dandi-api/issues/476
# do testing only sparingly (once a week). cron run on drogon will do the
# in-use "testing".
#push:
# branches:
# - master
schedule:
- cron: '0 6 * * 0'
defaults:
run:
shell: bash
concurrency:
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref_name }}
cancel-in-progress: true
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
python-version:
- '3.10'
- '3.11'
- '3.12'
toxenv: [py]
include:
- python-version: '3.10'
toxenv: lint
- python-version: '3.10'
toxenv: typing
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: ${{ matrix.python-version }}
- name: Install Python dependencies
run: |
python -m pip install --upgrade pip wheel
python -m pip install --upgrade --upgrade-strategy=eager datalad-installer tox
- name: Install git-annex
run: |
datalad-installer --sudo ok neurodebian git-annex -m neurodebian
# make standalone git take precendence to guarantee compatibility with git-annex
echo "/usr/lib/git-annex.linux/" >> $GITHUB_PATH
- name: Configure Git
run: |
git config --global user.email "[email protected]"
git config --global user.name "GitHub Almighty"
- name: Run tests with coverage
if: matrix.toxenv == 'py'
run: tox -e py -- -vv --cov-report=xml
- name: Run generic tests
if: matrix.toxenv != 'py'
run: tox -e ${{ matrix.toxenv }}
- name: Upload coverage to Codecov
if: matrix.toxenv == 'py'
uses: codecov/codecov-action@v4
with:
fail_ci_if_error: false
token: ${{ secrets.CODECOV_TOKEN }}
name: ${{ matrix.python-version }}
# vim:set et sts=2: