From c36f9b9f2c4a53716b727e51c1caa4e957d628a0 Mon Sep 17 00:00:00 2001 From: Matt Kubilus Date: Mon, 15 Jan 2024 20:38:22 -0500 Subject: [PATCH] Multiple pythons, apparently --- .github/workflows/test.yml | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 9f916a86..5ebc6071 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -37,11 +37,7 @@ jobs: - name: Setup run: | - #choco --yes install winfsp - #py -m pip install --only-binary :all: greenlet==2.0.2 - #py -m pip install --only-binary :all: eventlet==0.33.3 - #py -m pip install -U pytest - py -m pip install -U -r requirements.txt + python -m pip install -U -r requirements.txt - name: Test - run: cd autoortho && py -m pytest -v test_getortho.py test_pydds.py test_downloader.py + run: cd autoortho && python -m pytest -v test_getortho.py test_pydds.py test_downloader.py