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

remove unnecessary python deps for e2e test #112

Merged
merged 6 commits into from
Oct 9, 2022
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
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