How to Perform Manual Updates to Locust Test Dependencies - CMSgov/beneficiary-fhir-data GitHub Wiki
How to Perform Manual Updates to Locust Dependencies
Instructions
- Use
pew
to create a temporary empty Python 3.9 virtual environment. Example command is pew new -p 3.9 nameOfTestEnv
.
- Install
pip-tools
in the new virtual environment.
- Run
pip-compile
on whichever *-requirements.in` we have changed.
- Run pip-sync on both
*-requirements.txt
files.
- Exit the virtual environment by running running
exit
- Finally delete the temp virtual environment by running
pew rm nameOfTestEnv