Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Pin pytest version to 5.4.3 #9767

Merged
merged 1 commit into from
Jul 29, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion ci/asan_tests/ray-project/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ Pillow
prometheus_client
py-spy
pygments
pytest
pytest==5.4.3
pytest-asyncio
pytest-rerunfailures
pytest-sugar
Expand Down
2 changes: 1 addition & 1 deletion ci/asan_tests/run_asan_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ asan_install() {
asan_setup() {
echo "Setting up the environment"
pip install -r ray-project/requirements.txt
pip install -U pytest
pip install -U pytest==5.4.3

echo "Installing cython example"
(cd "${ROOT_DIR}"/../doc/examples/cython && python setup.py install --user)
Expand Down
2 changes: 1 addition & 1 deletion ci/travis/install-dependencies.sh
Original file line number Diff line number Diff line change
Expand Up @@ -237,7 +237,7 @@ install_dependencies() {
esac
pip_packages+=(scipy tensorflow=="${tf_version}" cython==0.29.0 gym \
opencv-python-headless pyyaml pandas==1.0.5 requests feather-format lxml openpyxl xlrd \
py-spy pytest pytest-timeout networkx tabulate aiohttp uvicorn dataclasses pygments werkzeug \
py-spy pytest==5.4.3 pytest-timeout networkx tabulate aiohttp uvicorn dataclasses pygments werkzeug \
kubernetes flask grpcio pytest-sugar pytest-rerunfailures pytest-asyncio scikit-learn==0.22.2 numba \
Pillow prometheus_client boto3 pettingzoo mypy)
if [ "${OSTYPE}" != msys ]; then
Expand Down
4 changes: 2 additions & 2 deletions ci/travis/test-wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ if [[ "$platform" == "linux" ]]; then
"$PYTHON_EXE" -u -c "import ray; print(ray.__commit__)" | grep "$TRAVIS_COMMIT" || (echo "ray.__commit__ not set properly!" && exit 1)

# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp google grpcio pytest requests
"$PIP_CMD" install -q aiohttp google grpcio pytest==5.4.3 requests

# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
Expand Down Expand Up @@ -112,7 +112,7 @@ elif [[ "$platform" == "macosx" ]]; then
"$PIP_CMD" install -q "$PYTHON_WHEEL"

# Install the dependencies to run the tests.
"$PIP_CMD" install -q aiohttp google grpcio pytest requests
"$PIP_CMD" install -q aiohttp google grpcio pytest==5.4.3 requests

# Run a simple test script to make sure that the wheel works.
for SCRIPT in "${TEST_SCRIPTS[@]}"; do
Expand Down