Commit f8e821ff by Sébastien Eustace

Fix Github actions

parent d89cb37c
name: Main
name: Tests
on: [push, pull_request]
......@@ -85,12 +85,12 @@ jobs:
- name: Install Poetry
run: |
python get-poetry.py --preview -y
SET PATH=%USERPROFILE%\\.poetry\\bin;%PATH%
$env:Path += ";$env:Userprofile\.poetry\bin"
- name: Install dependencies
run: |
SET PATH=%USERPROFILE%\\.poetry\\bin;%PATH%
$env:Path += ";$env:Userprofile\.poetry\bin"
poetry install
- name: Test
run: |
SET PATH=%USERPROFILE%\\.poetry\\bin;%PATH%
$env:Path += ";$env:Userprofile\.poetry\bin"
poetry run pytest -q tests
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment