Skip to content

Commit

Permalink
remove unnecessary python deps for e2e test (#112)
Browse files Browse the repository at this point in the history
  • Loading branch information
wbpcode authored Oct 9, 2022
1 parent 9530d62 commit f04a5de
Show file tree
Hide file tree
Showing 4 changed files with 19 additions and 66 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,7 +81,7 @@ jobs:
run: |
pip3 install --upgrade pip
pip3 install setuptools
pip3 install -r requirements.txt
pip3 install -r test/e2e/requirements.txt
python3 test/e2e/main.py --expected_file=test/e2e/data/expected.yaml --max_retry_times=3 --target_path=/ping
e2e-python:
Expand All @@ -95,5 +95,5 @@ jobs:
run: |
pip3 install --upgrade pip
pip3 install setuptools
pip3 install -r requirements.txt
pip3 install -r test/e2e/requirements.txt
python3 test/e2e/main.py --expected_file=test/e2e/data/expected-python.yaml --max_retry_times=3 --target_path=/ping2
63 changes: 0 additions & 63 deletions requirements.txt

This file was deleted.

2 changes: 1 addition & 1 deletion test/e2e/docker/Dockerfile.interm
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM python:3.8
COPY . /tmp
WORKDIR tmp
RUN pip3 install -r requirements.txt
RUN pip3 install -r test/e2e/requirements.txt
16 changes: 16 additions & 0 deletions test/e2e/requirements.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
PyYAML==5.3.1
requests==2.24.0
apache-skywalking==0.5.0
protobuf==3.12.4
tornado==6.0.4
sanic==20.9.1
Flask==1.1.2
Jinja2==2.11.2
pymongo==3.11.0
PyMySQL==0.10.0
pyramid==1.10.5
pika==1.1.0
redis==3.5.3
MarkupSafe==1.1.1
itsdangerous==1.1.0
Werkzeug==1.0.1

0 comments on commit f04a5de

Please sign in to comment.