Skip to content

Commit

Permalink
Remove durations and ensure no lightened settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mlxd committed Sep 13, 2024
1 parent 7ada97b commit 67e79ec
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 8 deletions.
14 changes: 6 additions & 8 deletions .github/workflows/interface-unit-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -283,9 +283,9 @@ jobs:
pytest_coverage_flags: ${{ inputs.pytest_coverage_flags }}
pytest_markers: tf and not qcut and not finite-diff and not param-shift
pytest_additional_args: ${{ needs.setup-ci-load.outputs.enable_split == '1' && format('--splits {0} --group {1}', '3', matrix.group) || '' }}
pytest_durations_file_path: '.github/workflows/tf_tests_durations.json'
pytest_durations_file_path: ${{ needs.setup-ci-load.outputs.enable_split == '1' && '.github/workflows/tf_tests_durations.json' || '' }}
pytest_store_durations: ${{ inputs.pytest_store_durations }}
additional_pip_packages: pytest-split
additional_pip_packages: ${{ needs.setup-ci-load.outputs.enable_split == '1' && 'pytest-split' || '' }}
requirements_file: ${{ github.event_name == 'schedule' && strategy.job-index == 0 && 'tf.txt' || '' }}
disable_new_opmath: ${{ inputs.disable_new_opmath }}
python_warning_level: ${{ inputs.python_warning_level }}
Expand Down Expand Up @@ -322,11 +322,9 @@ jobs:
pytest_coverage_flags: ${{ inputs.pytest_coverage_flags }}
pytest_markers: jax and not qcut and not finite-diff and not param-shift
pytest_additional_args: ${{ needs.setup-ci-load.outputs.enable_split == '1' && format('--splits {0} --group {1}', '5', matrix.group) || '' }}


pytest_durations_file_path: '.github/workflows/jax_tests_durations.json'
pytest_durations_file_path: ${{ needs.setup-ci-load.outputs.enable_split == '1' && '.github/workflows/jax_tests_durations.json' || '' }}
pytest_store_durations: ${{ inputs.pytest_store_durations }}
additional_pip_packages: pytest-split
additional_pip_packages: ${{ needs.setup-ci-load.outputs.enable_split == '1' && 'pytest-split' || '' }}
requirements_file: ${{ github.event_name == 'schedule' && strategy.job-index == 0 && 'jax.txt' || '' }}
disable_new_opmath: ${{ inputs.disable_new_opmath }}
python_warning_level: ${{ inputs.python_warning_level }}
Expand Down Expand Up @@ -363,9 +361,9 @@ jobs:
pytest_coverage_flags: ${{ inputs.pytest_coverage_flags }}
pytest_markers: core and not qcut and not finite-diff and not param-shift
pytest_additional_args: ${{ needs.setup-ci-load.outputs.enable_split == '1' && format('--splits {0} --group {1}', '5', matrix.group ) || '' }}
pytest_durations_file_path: '.github/workflows/core_tests_durations.json'
pytest_durations_file_path: ${{ needs.setup-ci-load.outputs.enable_split == '1' && '.github/workflows/core_tests_durations.json' || '' }}
pytest_store_durations: ${{ inputs.pytest_store_durations }}
additional_pip_packages: pytest-split
additional_pip_packages: ${{ needs.setup-ci-load.outputs.enable_split == '1' && 'pytest-split' || '' }}
requirements_file: ${{ github.event_name == 'schedule' && strategy.job-index == 0 && 'core.txt' || '' }}
disable_new_opmath: ${{ inputs.disable_new_opmath }}
python_warning_level: ${{ inputs.python_warning_level }}
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/package_warnings_as_errors.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,3 +23,4 @@ jobs:
skip_ci_test_jobs: 'qcut-tests'
python_warning_level: 'error'
pipeline_mode: 'warnings'
run_lightened_ci: false

0 comments on commit 67e79ec

Please sign in to comment.