Skip to content

Commit

Permalink
[CI] Fix docs building and testing workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
aicorein committed Oct 18, 2024
1 parent e2b9d59 commit 1e403a2
Show file tree
Hide file tree
Showing 4 changed files with 885 additions and 14 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/pytest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,10 +34,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
for i in $(ls *requirements.txt);
do
pip install -r $i
done
pytest -c pytest.ini
if [ $? -ne 0 ]; then
echo "::error title=Pytest failed::Tests failure"
Expand All @@ -49,7 +45,6 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install -r tests/requirements.txt
Get-ChildItem -Filter *requirements.txt | ForEach-Object { pip install -r $_.FullName }
pytest -c pytest.ini
if ($LASTEXITCODE -ne 0) {
Write-Host "::error title=Pytest failed::Tests failure"
Expand Down
Loading

0 comments on commit 1e403a2

Please sign in to comment.