From 5405533b60719ee19298848d9a56af23ea279145 Mon Sep 17 00:00:00 2001 From: mpenning Date: Wed, 15 Nov 2023 10:42:30 -0600 Subject: [PATCH] Add good runtime comments --- .github/workflows/tests.yml | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index 9fab1e0..d89fda3 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -51,20 +51,20 @@ jobs: run: python -c "import sys; print(sys.version)" - name: Install dependencies run: | - : ############################################################### - : # install pip, pytest, and python packages - : # asterisk globbing is fragile, so don't use asterisk path - : # globs. Just call out individual files, below. - : ############################################################### + true ############################################################### + true # install pip, pytest, and python packages + true # asterisk globbing is fragile, so don't use asterisk path + true # globs. Just call out individual files, below. + true ############################################################### python -m pip install --upgrade pip pip install -U pytest pip install -Ur './requirements/requirements.txt' pip install -Ur './requirements/requirements-dev.txt' - name: Run pytest run: | - : ############################################################### - : # use pytest dot path because it's portable across - : # windows and unix - : ############################################################### + true ############################################################### + true # use pytest dot path because it's portable across + true # windows and unix + true ############################################################### cd tests && pytest .