You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi, first of all, thank's a lot for your wonderfull project :) I'm a fanatic of NCrunch/Wallaby.js and it's a long time that i'm looking for a tools like fot python !
I've tried something long time ago 😅 (https://github.com/sGeeK44/python-live-testing) but never see light. maybe a day i can contribute to develop VsCode plugin to your project.
I tried to setup tool, but nothing append in my UI (no circle color). When i open web-ui, test is well discorvered but doesnt run automaticly, I have to click on it.
Could you give me some help ?
How can I activate log to view what's coul be my problem ?
The text was updated successfully, but these errors were encountered:
Hello, the intended behavior is that tests won't be run automatically on engine startup, hence you do not see coverage.
It may be time-consuming to run all at once, but I agree that this is not clear.
Please try opening PyCrunch tool window in IDE (noted in arrow) and run the desired tests manually for the first time:
Do you see discovered tests there?
You can select all tests by CMD+A (Ctrl+A on Windows)
For logs you will need to change file log_configuration.yaml in site-packages: /Users/gleb/venv/pycrunch_integration_tests_3_11/lib/python3.11/site-packages/pycrunch/log_configuration.yaml
and change
```
handlers:
console:
class: logging.StreamHandler
level: INFO
formatter: simple
stream: ext://sys.stdout
```
To `level` to `DEBUG`
```
handlers:
console:
class: logging.StreamHandler
level: DEBUG
formatter: simple
stream: ext://sys.stdout
```
And there is VSCode extension in development now and will be ready for alpha release in week or two, we will open source repository with the extension soon
Hi, first of all, thank's a lot for your wonderfull project :) I'm a fanatic of NCrunch/Wallaby.js and it's a long time that i'm looking for a tools like fot python !
I've tried something long time ago 😅 (https://github.com/sGeeK44/python-live-testing) but never see light. maybe a day i can contribute to develop VsCode plugin to your project.
I tried to setup tool, but nothing append in my UI (no circle color). When i open web-ui, test is well discorvered but doesnt run automaticly, I have to click on it.
Could you give me some help ?
How can I activate log to view what's coul be my problem ?
The text was updated successfully, but these errors were encountered: