mirror of
https://github.com/Orange-OpenSource/hurl.git
synced 2024-12-23 02:52:34 +03:00
Move/Update requirements.txt
This commit is contained in:
parent
22c14e4a0a
commit
97bbf905cb
@ -26,7 +26,7 @@ jobs:
|
|||||||
name: Tests units and integration tests
|
name: Tests units and integration tests
|
||||||
command: |
|
command: |
|
||||||
python3 -m pip install --upgrade pip --quiet
|
python3 -m pip install --upgrade pip --quiet
|
||||||
pip3 install --requirement integration/requirements-frozen.txt
|
pip3 install --requirement bin/requirements-frozen.txt
|
||||||
mitmdump --version
|
mitmdump --version
|
||||||
export PATH="$PWD/target/debug:$PATH"
|
export PATH="$PWD/target/debug:$PATH"
|
||||||
cd integration
|
cd integration
|
||||||
|
2
.github/workflows/test.yml
vendored
2
.github/workflows/test.yml
vendored
@ -208,7 +208,7 @@ jobs:
|
|||||||
if (Test-Path C:\vcpkg\installed) {vcpkg update} else {vcpkg install libxml2:x64-windows}
|
if (Test-Path C:\vcpkg\installed) {vcpkg update} else {vcpkg install libxml2:x64-windows}
|
||||||
vcpkg integrate install
|
vcpkg integrate install
|
||||||
# install proxy and server
|
# install proxy and server
|
||||||
pip3 install --requirement integration/requirements-frozen.txt
|
pip3 install --requirement bin/requirements-frozen.txt
|
||||||
- name: Run Tests units
|
- name: Run Tests units
|
||||||
run: |
|
run: |
|
||||||
cd .\integration
|
cd .\integration
|
||||||
|
@ -5,6 +5,7 @@ Brotli==1.0.9
|
|||||||
bs4==0.0.1
|
bs4==0.0.1
|
||||||
certifi==2021.10.8
|
certifi==2021.10.8
|
||||||
cffi==1.15.0
|
cffi==1.15.0
|
||||||
|
charset-normalizer==2.1.1
|
||||||
click==8.1.2
|
click==8.1.2
|
||||||
cryptography==36.0.2
|
cryptography==36.0.2
|
||||||
Flask==2.0.3
|
Flask==2.0.3
|
||||||
@ -12,6 +13,7 @@ h11==0.13.0
|
|||||||
h2==4.1.0
|
h2==4.1.0
|
||||||
hpack==4.0.0
|
hpack==4.0.0
|
||||||
hyperframe==6.0.1
|
hyperframe==6.0.1
|
||||||
|
idna==3.3
|
||||||
itsdangerous==2.1.2
|
itsdangerous==2.1.2
|
||||||
Jinja2==3.1.1
|
Jinja2==3.1.1
|
||||||
kaitaistruct==0.9
|
kaitaistruct==0.9
|
||||||
@ -20,6 +22,8 @@ lxml==4.9.1
|
|||||||
MarkupSafe==2.1.1
|
MarkupSafe==2.1.1
|
||||||
mitmproxy==8.0.0
|
mitmproxy==8.0.0
|
||||||
msgpack==1.0.3
|
msgpack==1.0.3
|
||||||
|
mypy==0.971
|
||||||
|
mypy-extensions==0.4.3
|
||||||
passlib==1.7.4
|
passlib==1.7.4
|
||||||
protobuf==3.19.4
|
protobuf==3.19.4
|
||||||
publicsuffix2==2.20191221
|
publicsuffix2==2.20191221
|
||||||
@ -28,11 +32,15 @@ pycparser==2.21
|
|||||||
pyOpenSSL==22.0.0
|
pyOpenSSL==22.0.0
|
||||||
pyparsing==3.0.7
|
pyparsing==3.0.7
|
||||||
pyperclip==1.8.2
|
pyperclip==1.8.2
|
||||||
|
requests==2.28.1
|
||||||
ruamel.yaml==0.17.21
|
ruamel.yaml==0.17.21
|
||||||
ruamel.yaml.clib==0.2.6
|
ruamel.yaml.clib==0.2.6
|
||||||
sortedcontainers==2.4.0
|
sortedcontainers==2.4.0
|
||||||
soupsieve==2.3.2.post1
|
soupsieve==2.3.2.post1
|
||||||
|
tomli==2.0.1
|
||||||
tornado==6.1
|
tornado==6.1
|
||||||
|
typing_extensions==4.3.0
|
||||||
|
urllib3==1.26.12
|
||||||
urwid==2.1.2
|
urwid==2.1.2
|
||||||
Werkzeug==2.0.3
|
Werkzeug==2.0.3
|
||||||
wsproto==1.1.0
|
wsproto==1.1.0
|
@ -2,3 +2,5 @@ Flask==2.0.3
|
|||||||
Werkzeug==2.0.3
|
Werkzeug==2.0.3
|
||||||
bs4==0.0.1
|
bs4==0.0.1
|
||||||
lxml==4.9.1
|
lxml==4.9.1
|
||||||
|
requests==2.28.1
|
||||||
|
mypy==0.971
|
@ -1,6 +1,6 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
export PATH="$PWD/target/release:$PATH"
|
export PATH="$PWD/target/release:$PATH"
|
||||||
pip3 install --requirement integration/requirements-frozen.txt
|
pip3 install --requirement bin/requirements-frozen.txt
|
||||||
cd bench || exit 1
|
cd bench || exit 1
|
||||||
python3 server.py >server.log 2>&1 &
|
python3 server.py >server.log 2>&1 &
|
||||||
sleep 2
|
sleep 2
|
||||||
|
@ -1,7 +1,7 @@
|
|||||||
#!/bin/sh
|
#!/bin/sh
|
||||||
set -e
|
set -e
|
||||||
echo "----- install servers prerequisites -----"
|
echo "----- install servers prerequisites -----"
|
||||||
pip3 install --requirement integration/requirements-frozen.txt
|
pip3 install --requirement bin/requirements-frozen.txt
|
||||||
echo "----- start servers -----"
|
echo "----- start servers -----"
|
||||||
cd integration
|
cd integration
|
||||||
python3 server.py >server.log 2>&1 &
|
python3 server.py >server.log 2>&1 &
|
||||||
|
Loading…
Reference in New Issue
Block a user