Skip to content

Commit

Permalink
Merge pull request #20830 from ccordoba12/fix-tests
Browse files Browse the repository at this point in the history
PR: Don't treat warnings as errors when installing Spyder and subrepos (CI)
  • Loading branch information
ccordoba12 committed Apr 16, 2023
2 parents 9325bf4 + dd0f70b commit 90cea70
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/scripts/install.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,16 +51,16 @@ else
fi

# Install subrepos from source
python -bb -X dev -W error install_dev_repos.py --not-editable --no-install spyder
python -bb -X dev install_dev_repos.py --not-editable --no-install spyder

# Install boilerplate plugin
pushd spyder/app/tests/spyder-boilerplate
pip install --no-deps -q -e .
popd

# Install Spyder to test it as if it was properly installed.
python -bb -X dev -W error -m build
python -bb -X dev -W error -m pip install --no-deps dist/spyder*.whl
python -bb -X dev -m build
python -bb -X dev -m pip install --no-deps dist/spyder*.whl

# Adjust PATH on Windows so that we can use conda below. This needs to be done
# at this point or the pip slots fail.
Expand Down

0 comments on commit 90cea70

Please sign in to comment.