From ae504d0e0355e5cd50c303c3fc20ca4f516a2c81 Mon Sep 17 00:00:00 2001 From: JoeZiminski Date: Fri, 27 Sep 2024 09:58:25 +0100 Subject: [PATCH] Delete unused old test file. --- .../workflows/weekly_cron_job_all_tests.yml | 52 ------------------- 1 file changed, 52 deletions(-) delete mode 100644 .github/workflows/weekly_cron_job_all_tests.yml diff --git a/.github/workflows/weekly_cron_job_all_tests.yml b/.github/workflows/weekly_cron_job_all_tests.yml deleted file mode 100644 index 1bb7ac7f..00000000 --- a/.github/workflows/weekly_cron_job_all_tests.yml +++ /dev/null @@ -1,52 +0,0 @@ -# This runs a weekly cron job running all tests. Unfortunately -# -name: Test on Cron - -on: - schedule: - # Runs at 12:00 AM every Monday - # by default only on main + not on forks. - - cron: '0 0 * * 1' - -jobs: - linting: - runs-on: ubuntu-latest - steps: - - uses: neuroinformatics-unit/actions/lint@v2 - - test: - needs: [linting] - name: ${{ matrix.os }} py${{ matrix.python-version }} - runs-on: ${{ matrix.os }} - - defaults: - run: - shell: bash -l {0} - - strategy: - matrix: - # macos-14 is M1, macos-13 is intel - os: [windows-latest, ubuntu-latest, macos-14, macos-13] - python-version: ["3.9", "3.10", "3.11", "3.12"] - - steps: - - uses: actions/checkout@v4 - - name: Set up Conda - uses: conda-incubator/setup-miniconda@v3 - with: - python-version: ${{ matrix.python-version }} - auto-update-conda: true - channels: conda-forge - activate-environment: "datashuttle-test" - - name: Install datashuttle with conda - run: | - conda activate datashuttle-test - conda install -c conda-forge datashuttle - - name: Install local datashuttle for testing - run: | - # --force will only uninstall datashuttle not dependencies - conda uninstall datashuttle --force - python -m pip install --upgrade pip - pip install .[dev] - - name: Test - run: pytest