Skip to content

Commit ee77ed1

Browse files
committed
Get baseline dll from pypi
1 parent 64e79f6 commit ee77ed1

File tree

4 files changed

+5
-3
lines changed

4 files changed

+5
-3
lines changed

.github/workflows/main.yml

+4-2
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,9 @@ jobs:
7373
run: dotnet test --runtime any-${{ matrix.platform }} src/python_tests_runner/
7474

7575
- name: Perf tests
76-
if: ${{ matrix.python == '3.8' }}
77-
run: dotnet test --configuration Release --runtime any-${{ matrix.platform }} --logger "console;verbosity=detailed" src/perf_tests/
76+
if: ${{ matrix.python != '3.9' && matrix.python != '3.10' }}
77+
run: |
78+
pip install --only-binary=:all: --force --no-deps --target src/perf_tests/baseline/ pythonnet==2.5.2
79+
dotnet test --configuration Release --runtime any-${{ matrix.platform }} --logger "console;verbosity=detailed" src/perf_tests/
7880
7981
# TODO: Run mono tests on Windows?

.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
/src/runtime/interopNative.cs
2-
!/src/perf_tests/baseline/Python.Runtime.dll
2+
/src/perf_tests/baseline/
33

44
# General binaries and Build results
55
*.dll

src/perf_tests/baseline/.gitkeep

Whitespace-only changes.
-173 KB
Binary file not shown.

0 commit comments

Comments
 (0)