diff --git a/.github/workflows/main_unit_tests.yml b/.github/workflows/main_unit_tests.yml deleted file mode 100644 index face3776..00000000 --- a/.github/workflows/main_unit_tests.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: "Main unit tests" -on: - pull_request: - types: [opened, synchronize, reopened, ready_for_review, labeled, unlabeled] - -jobs: - main_unit_tests: - runs-on: ubuntu-latest - steps: - - name: Checkout Pace repository - uses: actions/checkout@v3.5.2 - with: - submodules: 'recursive' - - name: Step Python 3.11.9 - uses: actions/setup-python@v4.6.0 - with: - python-version: '3.11.9' - - name: Install OpenMPI & Boost for gt4py - run: | - sudo apt-get install libopenmpi-dev libboost1.74-dev - - name: Install Python packages - run: | - python -m pip install --upgrade pip setuptools wheel - pip install -r requirements_dev.txt -c constraints.txt - - name: Clone datafiles - run: | - mkdir -p tests/main/input && cd tests/main/input - git clone -b store_files https://github.com/mlee03/pace.git tmp && mv tmp/*.nc . && rm -rf tmp - - name: Run all main tests - run: | - pytest -x tests/main