gci: Remove already included requirements.txt files

These are being pulled in via the root requirements.txt file now, so
no need to install them separately.
This commit is contained in:
Christian Decker
2021-03-19 14:58:19 +01:00
committed by Rusty Russell
parent 0dd57cbf3c
commit 74b4f95552

View File

@@ -21,23 +21,17 @@ export VALGRIND=${VALGRIND:-0}
env env
pip3 install --user -U \ pip3 install --user -U -r requirements.txt
-r requirements.txt \
-r contrib/pyln-client/requirements.txt \
-r contrib/pyln-proto/requirements.txt \
-r contrib/pyln-testing/requirements.txt
# Install utilities that aren't dependencies, but make # Install utilities that aren't dependencies, but make
# running tests easier/feasible on CI (and pytest which # running tests easier/feasible on CI (and pytest which
# keeps breaking the rerunfailures plugin). # keeps breaking the rerunfailures plugin).
pip3 install --user -U \ pip3 install --user -U \
flaky \
blinker \ blinker \
pytest-sentry \ pytest-sentry \
pytest-test-groups==1.0.3 \ pytest-test-groups==1.0.3 \
pytest-custom-exit-code==0.3.0 \ pytest-custom-exit-code==0.3.0 \
pytest-json-report \ pytest-json-report
mypy==0.790
git clone https://github.com/lightningnetwork/lightning-rfc.git ../lightning-rfc git clone https://github.com/lightningnetwork/lightning-rfc.git ../lightning-rfc
git submodule update --init --recursive git submodule update --init --recursive