From 75fb9b6c41238787aaf9367ba9a1fb34412ed38b Mon Sep 17 00:00:00 2001 From: Victor LEUNG Date: Thu, 26 Sep 2024 11:28:06 +0800 Subject: [PATCH] Maybe this time I get it --- .github/workflows/ironpython.yml | 13 ++++++------- 1 file changed, 6 insertions(+), 7 deletions(-) diff --git a/.github/workflows/ironpython.yml b/.github/workflows/ironpython.yml index 654e9752e..3dc6b5281 100644 --- a/.github/workflows/ironpython.yml +++ b/.github/workflows/ironpython.yml @@ -39,20 +39,19 @@ jobs: - uses: NuGet/setup-nuget@v1.0.5 - - name: Point IRONPYTHONPATH to the CPYTHON installation - run: | - $Env:IRONPYTHONPATH = python -c "import sysconfig; print(sysconfig.get_path('purelib'))" - echo "Setting IRONPYTHONPATH to $Env:IRONPYTHONPATH" - - - uses: fawazahmed0/action-debug-vscode@main + # - uses: fawazahmed0/action-debug-vscode@main - name: Test import compas_fab run: | + $Env:IRONPYTHONPATH = python -c "import sysconfig; print(sysconfig.get_path('purelib'))" + echo "Setting IRONPYTHONPATH to $Env:IRONPYTHONPATH" echo "Testing import of compas_fab..." ipy -m compas_fab - - name: Run tests + - name: Run ipy tests run: | + $Env:IRONPYTHONPATH = python -c "import sysconfig; print(sysconfig.get_path('purelib'))" + echo "Setting IRONPYTHONPATH to $Env:IRONPYTHONPATH" echo "Running tests..." ipy tests/ipy_test_runner.py