Marco Di Croce

Results 10 issues of Marco Di Croce

I want to implement Testmon for my project but I currently have symlinked files. Both test and non-test files. So what happens is: Testmon DOES NOT detect modified symlinked tests...

Let's say I have this code fragment (note the backslash): ```python3 plan_bundles = { plan_bundle.bundle_name: { 'tier_change_options': \ bundle_util.get_tier_change_options(plan_bundle, details_by_bundle) } for plan_bundle in plan.plan_bundles } ``` If I run...

If I run yapf over my files, yapf says all is good. But I run yapf-diff over my PR diff, yapf-diff is generating some unexpected auto-format changes, with lots of...

I have this in my pytest.ini to show all logs above DEBUG level with colors. ``` # Capture all logs above DEBUG level log_level=DEBUG # Print colorized output to the...

With the new version, I detected some tests were not being run. Analyzing the logs, I realized some tests were being run twice or even 4 times in different groups....

Is pytest-split compatible with pytest-testmon? I want ro run all tests in groups (using pytest-split) and then use testmon to run only the affected tests inside those groups. Testmon said...

- [X] I'm on the [latest version](https://pypi.org/project/djlint/) of djLint - [X] I've searched the [issues](https://github.com/djlint/djLint/issues) - [X] I've read the [docs](https://djlint.com) ## System Info - OS: Apple M1 Pro. macOS...

:microbe: bug
:sponge: formatter

I have a shell html template that other templates extend from. In the shell template I have this: ```html {% block js_includes %}{% endblock %} ``` That way, I don't...

### What happened? 1) I have this upload-artifact steps in a matrix: ``` - name: Upload xUnit report artifact if: ${{ !cancelled() }} # Upload artifact regardless of failures uses:...

bug
v4

I had a X branch and I renamed it to Y. A couple of days later I try to create branch X using this action and the action succeeded, but...