Skip to content

How to Perform Manual Updates to Locust Test Dependencies

Brandon Cruz edited this page Oct 14, 2023 · 2 revisions

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
Clone this wiki locally