SvenskaSpel / har2locust

Convert HTTP Archive (.har file) to a Locust script
Other
149 stars 22 forks source link

Ensure valid class name in locustfile when filename contains special characters #15

Closed ivanpuchalka closed 4 months ago

ivanpuchalka commented 4 months ago

Not as trivial as I thought it'd be. Taking the definition in https://docs.python.org/3.8/reference/lexical_analysis.html#identifiers, the new code replaces any invalid character with an underscore.

Only added a simple test to the same file as the rest, I can add more if needed.

Fixes #14

cyberw commented 4 months ago

Nice!