From c123a460b33daf3292788e7facbf20ce27a2eb85 Mon Sep 17 00:00:00 2001 From: Jonathan de Bruin Date: Sat, 23 Jan 2021 01:38:42 +0100 Subject: [PATCH] Remove tests --- .github/workflows/ci-workflow.yml | 43 ------------------------------- 1 file changed, 43 deletions(-) diff --git a/.github/workflows/ci-workflow.yml b/.github/workflows/ci-workflow.yml index d9142ad..7fd5def 100644 --- a/.github/workflows/ci-workflow.yml +++ b/.github/workflows/ci-workflow.yml @@ -16,46 +16,3 @@ jobs: - name: Lint python with flake8 run: | flake8 . --max-complexity=10 --statistics - test-master: - name: test-asreview-latest - runs-on: ubuntu-latest - steps: - - uses: actions/checkout@v2 - with: - path: asr-plot - - - uses: actions/checkout@v2 - with: - repository: asreview/asreview - path: asr-core - - uses: actions/setup-python@v1 - with: - python-version: '3.6' - architecture: 'x64' - - name: Install packages and run tests - run: | - pip install pytest - pip install --upgrade setuptools>=41.0.0 - pip install ./asr-core[all] - pip install ./asr-plot - pytest asr-plot/tests - test-older: - name: test-asreview-0-7-2 - runs-on: ubuntu-latest - strategy: - matrix: - asr_versions: ['0.7.2'] - steps: - - uses: actions/checkout@v2 - - uses: actions/setup-python@v1 - with: - python-version: '3.6' - architecture: 'x64' - - name: Install packages and run tests - run: | - pip install pytest - pip install --upgrade setuptools>=41.0.0 - pip install "numpy<1.19" - pip install asreview[all]==${{ matrix.asr_versions }} - pip install . - pytest tests