Log requirements at start of build

This commit is contained in:
Paul O'Leary McCann 2022-12-28 18:55:18 +09:00
parent e11b71739a
commit 6d46067c7f

View File

@ -16,6 +16,9 @@ steps:
- script: |
python -m pip install -U build pip setuptools
echo "----- REQUIREMENTS -----"
cat requirements.txt
echo "----- END REQUIREMENTS -----"
python -m pip install -U -r requirements.txt
displayName: "Install dependencies"