DEV Community

Discussion on: Quick LoadTests with Artillery

Collapse
 
valentinepalazkov profile image
Valentine Palazkov • Edited

OK,

Probably it's a dumb question: how to run that pretty strange command line?

I am talking about this:

DEBUG=http artillery run load.yml
Enter fullscreen mode Exit fullscreen mode

I have windows 10 and it fails on "DEBUG=http" with the reason:

'DEBUG' is not recognized as an internal or external command,
operable program or batch file.
Enter fullscreen mode Exit fullscreen mode
Collapse
 
tios profile image
Theo

DEBUG=http sets environment variable. In Windows you should do 'set DEBUG=http...'

Sorry for the very late response.