Replies: 1 comment
-
Same use case here. Unfortunately looks like vscode runs everything using https://github.com/microsoft/vscode-python/blob/main/python_files/vscode_pytest/run_pytest_script.py |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I have a binary that needs to execute my pytests like this:
Basically all it does it send the command
pytest -k my_test
into my custom binary (mirrord).I thought I could utilize this simple bash script and pass arguments to it from
settings.json
, I tried something like:And then passed it some arguments, but it didn't work.
This is the script:
I'm not too familiar with pytest and would love some help getting this to work in non-debug mode as well.
Beta Was this translation helpful? Give feedback.
All reactions