Mentions légales du service

Skip to content
Snippets Groups Projects
Commit 3e79d1b2 authored by hhakim's avatar hhakim
Browse files

Modify ci job test for windows whl pyfaust pkg (no need to specify the version...

Modify ci job test for windows whl pyfaust pkg (no need to specify the version when the virtual env. is already loaded).
parent 4c8ff061
No related branches found
No related tags found
No related merge requests found
Pipeline #833991 skipped
...@@ -585,9 +585,9 @@ test_win_purepy_pkg: ...@@ -585,9 +585,9 @@ test_win_purepy_pkg:
- 'set /p PKG_NAME=<pkg_name.txt' - 'set /p PKG_NAME=<pkg_name.txt'
- '%JOB_PYTHON% -%WIN_PY_VER% -m venv test_pyfaust-%CI_COMMIT_TAG%' - '%JOB_PYTHON% -%WIN_PY_VER% -m venv test_pyfaust-%CI_COMMIT_TAG%'
- 'call test_pyfaust-%CI_COMMIT_TAG%\Scripts\activate' - 'call test_pyfaust-%CI_COMMIT_TAG%\Scripts\activate'
- '%JOB_PYTHON% -%WIN_PY_VER% -m pip install %PKG_NAME%' - python -m pip install %PKG_NAME%
- '%JOB_PYTHON% -%WIN_PY_VER% -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"' - python -c "import pyfaust; print(pyfaust.version()); print(pyfaust.rand(5,5).toarray());"
- '%JOB_PYTHON% -%WIN_PY_VER% -c "import pyfaust.tests; pyfaust.tests.run_tests(\"cpu\", \"real\")"' - python -c "import pyfaust.tests; pyfaust.tests.run_tests(\"cpu\", \"real\")"
needs: needs:
- job: pkg_win_purepy_release - job: pkg_win_purepy_release
artifacts: true artifacts: true
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment