From 6f9b0552c7a5c793fb8d1e630ad20aeba3a27ec5 Mon Sep 17 00:00:00 2001 From: Eric Froemling Date: Tue, 6 Jun 2023 12:26:24 -0700 Subject: [PATCH] ci tweak --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 8ae3d1c6..2c57ca9e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -65,7 +65,7 @@ jobs: # run unit tests there since some behavior (filesystem, etc) can vary # significantly between windows and linux/apple. We also are able to # build our windows binary. - check_and_compile_windows: + build_and_test_windows: runs-on: windows-2019 steps: - uses: actions/checkout@v3 @@ -78,7 +78,7 @@ jobs: python -m pip install --upgrade pip pip install pytest typing_extensions python tools/pcommand win_ci_install_prereqs - - name: Run tests - run: python tools/pcommand pytest -v tests - name: Compile binary run: python tools/pcommand win_ci_binary_build + - name: Run tests + run: python tools/pcommand pytest -v tests