We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56ef96f commit a12d57cCopy full SHA for a12d57c
.gitlab-ci.yml
@@ -58,6 +58,13 @@ test:linux:aarch64:
58
59
test:mac:x64:
60
extends: .test
61
+ script:
62
+ - python3 -m venv .venv
63
+ - source .venv/bin/activate
64
+ - python3 -m pip install pytest
65
+ - rm -r objectbox # todo this is ugly; let's copy required files in a sub-folder instead?
66
+ - pip3 install --force-reinstall dist/*.whl # Artifacts from the previous stage (downloaded by default)
67
+ - python -m pytest
68
tags: [mac, x64, shell, python3]
69
70
test:windows:x64:
0 commit comments