diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index ade1b12cd..28ef7aed7 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -257,33 +257,33 @@ jobs: 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 + run: PYTHONPATH=$PWD/ pytest -vvs --disable-warnings 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 UI backend tests and measure coverage - id: ui-backend-tests - if: > - steps.modified-files.outputs.ui_backend == 'true' - || env.BUILD_AND_RUN_ALL - run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_ui_backend_tests --cov=covalent_ui --cov-config=.coveragerc + # - name: Run UI backend tests and measure coverage + # id: ui-backend-tests + # if: > + # steps.modified-files.outputs.ui_backend == 'true' + # || env.BUILD_AND_RUN_ALL + # run: PYTHONPATH=$PWD/ pytest -vvs --reruns=5 tests/covalent_ui_backend_tests --cov=covalent_ui --cov-config=.coveragerc - - name: Generate UI backend coverage report - id: ui-backend-coverage - if: steps.ui-backend-tests.outcome == 'success' - run: coverage xml -o ui_backend_coverage.xml + # - name: Generate UI backend coverage report + # id: ui-backend-coverage + # if: steps.ui-backend-tests.outcome == 'success' + # run: coverage xml -o ui_backend_coverage.xml - - name: Run UI frontend tests and measure coverage - id: ui-frontend-tests - if: > - steps.modified-files.outputs.ui_frontend == 'true' - || env.BUILD_AND_RUN_ALL - run: | - cd covalent_ui/webapp - npm test -- --coverage --watchAll=false --maxWorkers=50% + # - name: Run UI frontend tests and measure coverage + # id: ui-frontend-tests + # if: > + # steps.modified-files.outputs.ui_frontend == 'true' + # || env.BUILD_AND_RUN_ALL + # run: | + # cd covalent_ui/webapp + # npm test -- --coverage --watchAll=false --maxWorkers=50% - name: Dump Covalent logs if: >