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

test: use pytest-tagging dependency #35843

Closed
wants to merge 5 commits into from
Closed
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 tests/docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express
# or implied. See the License for the specific language governing permissions and limitations under the License.

FROM python:3.8-buster
FROM python:3.10-buster

RUN apt-get update && apt-get install -y jq

Expand Down
2 changes: 1 addition & 1 deletion tests/python_client/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8-buster
FROM python:3.10-buster

RUN apt-get update && apt-get install -y jq

Expand Down
2 changes: 1 addition & 1 deletion tests/python_client/requirements.txt
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ pytest-xdist==2.5.0
pymilvus==2.5.0rc70
pymilvus[bulk_writer]==2.5.0rc70
pytest-rerunfailures==9.1.1
git+https://github.com/Projectplace/pytest-tags
pytest_tagging==1.5.3
ndg-httpsclient
pyopenssl
pyasn1
Expand Down
3 changes: 2 additions & 1 deletion tests/scripts/ci-util-4am.sh
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,8 @@ export PIP_TRUSTED_HOST="nexus-ci.zilliz.cc"
export PIP_INDEX_URL="https://nexus-ci.zilliz.cc/repository/pypi-all/simple"
export PIP_INDEX="https://nexus-ci.zilliz.cc/repository/pypi-all/pypi"
export PIP_FIND_LINKS="https://nexus-ci.zilliz.cc/repository/pypi-all/pypi"
python3 -m pip install --no-cache-dir -r requirements.txt --timeout 30 --retries 6
python3 -m pip install --no-cache-dir -r requirements.txt --timeout 30 --retries 6
pip uninstall pytest-tags -y || true
}

# Login in ci docker registry
Expand Down
Loading