From 1b9abceaac98020184cc1eebed38cab77f05d6a0 Mon Sep 17 00:00:00 2001 From: sankalp Date: Tue, 29 Aug 2023 07:59:30 -0400 Subject: [PATCH] pausing sdk and dispatcher tests --- .github/workflows/tests.yml | 46 ++++++++++++++++++------------------- 1 file changed, 23 insertions(+), 23 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 343805182..fcf7fef15 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -225,29 +225,29 @@ jobs: env: COVALENT_EXECUTOR_DIR: doc/source/how_to/execution/custom_executors - - name: Run SDK tests and measure coverage - id: sdk-tests - if: > - steps.modified-files.outputs.sdk == 'true' - || env.BUILD_AND_RUN_ALL - run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_tests --cov=covalent --cov-config=.coveragerc - - - name: Generate SDK coverage report - id: sdk-coverage - if: steps.sdk-tests.outcome == 'success' - run: coverage xml -o sdk_coverage.xml - - - name: Run dispatcher tests and measure coverage - id: dispatcher-tests - if: > - steps.modified-files.outputs.dispatcher == 'true' - || env.BUILD_AND_RUN_ALL - run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_dispatcher_tests --cov=covalent_dispatcher --cov-config=.coveragerc - - - name: Generate dispatcher coverage report - id: dispatcher-coverage - if: steps.dispatcher-tests.outcome == 'success' - run: coverage xml -o dispatcher_coverage.xml + # - name: Run SDK tests and measure coverage + # id: sdk-tests + # if: > + # steps.modified-files.outputs.sdk == 'true' + # || env.BUILD_AND_RUN_ALL + # run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_tests --cov=covalent --cov-config=.coveragerc + + # - name: Generate SDK coverage report + # id: sdk-coverage + # if: steps.sdk-tests.outcome == 'success' + # run: coverage xml -o sdk_coverage.xml + + # - name: Run dispatcher tests and measure coverage + # id: dispatcher-tests + # if: > + # steps.modified-files.outputs.dispatcher == 'true' + # || env.BUILD_AND_RUN_ALL + # run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_dispatcher_tests --cov=covalent_dispatcher --cov-config=.coveragerc + + # - name: Generate dispatcher coverage report + # id: dispatcher-coverage + # if: steps.dispatcher-tests.outcome == 'success' + # run: coverage xml -o dispatcher_coverage.xml - name: Run functional tests and measure coverage id: functional-tests