From cae12bf50607048fd31dc3952ebb8e7fe17cf29a Mon Sep 17 00:00:00 2001 From: Robin Steuteville Date: Fri, 23 Feb 2024 14:10:19 -0700 Subject: [PATCH] removing if statements --- .github/workflows/py-tests.yaml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/py-tests.yaml b/.github/workflows/py-tests.yaml index 0aeecf9d..e8af95b6 100644 --- a/.github/workflows/py-tests.yaml +++ b/.github/workflows/py-tests.yaml @@ -33,12 +33,12 @@ jobs: override: true - name: Rust unit tests - if: ${{ github.repository == 'nrel/fastsim' && contains(github.event.pull_request.changed_files, 'rust/') }} + # if: ${{ github.repository == 'nrel/fastsim' && contains(github.event.pull_request.changed_files, 'rust/') }} run: | cd rust/ && cargo test - name: Python unit tests - if: ${{ github.repository == 'nrel/fastsim' && (contains(github.event.pull_request.changed_files, 'python/') || contains(github.event.pull_request.changed_files, 'rust/')) }} + # if: ${{ github.repository == 'nrel/fastsim' && (contains(github.event.pull_request.changed_files, 'python/') || contains(github.event.pull_request.changed_files, 'rust/')) }} run: | pip install -e ".[dev]" && pytest -v python/fastsim/tests/ pytest -v python/fastsim/demos/