Skip to content

Commit f04a5de

Browse files
authored
remove unnecessary python deps for e2e test (#112)
1 parent 9530d62 commit f04a5de

File tree

4 files changed

+19
-66
lines changed

4 files changed

+19
-66
lines changed

.github/workflows/main.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,7 @@ jobs:
8181
run: |
8282
pip3 install --upgrade pip
8383
pip3 install setuptools
84-
pip3 install -r requirements.txt
84+
pip3 install -r test/e2e/requirements.txt
8585
python3 test/e2e/main.py --expected_file=test/e2e/data/expected.yaml --max_retry_times=3 --target_path=/ping
8686
8787
e2e-python:
@@ -95,5 +95,5 @@ jobs:
9595
run: |
9696
pip3 install --upgrade pip
9797
pip3 install setuptools
98-
pip3 install -r requirements.txt
98+
pip3 install -r test/e2e/requirements.txt
9999
python3 test/e2e/main.py --expected_file=test/e2e/data/expected-python.yaml --max_retry_times=3 --target_path=/ping2

requirements.txt

Lines changed: 0 additions & 63 deletions
This file was deleted.

test/e2e/docker/Dockerfile.interm

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
FROM python:3.8
22
COPY . /tmp
33
WORKDIR tmp
4-
RUN pip3 install -r requirements.txt
4+
RUN pip3 install -r test/e2e/requirements.txt

test/e2e/requirements.txt

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
PyYAML==5.3.1
2+
requests==2.24.0
3+
apache-skywalking==0.5.0
4+
protobuf==3.12.4
5+
tornado==6.0.4
6+
sanic==20.9.1
7+
Flask==1.1.2
8+
Jinja2==2.11.2
9+
pymongo==3.11.0
10+
PyMySQL==0.10.0
11+
pyramid==1.10.5
12+
pika==1.1.0
13+
redis==3.5.3
14+
MarkupSafe==1.1.1
15+
itsdangerous==1.1.0
16+
Werkzeug==1.0.1

0 commit comments

Comments
 (0)