Sondre Lillebø Gundersen
Sondre Lillebø Gundersen
Yeah you're probably right 🤔 I hadn't considered that tbh. Could we maybe pass the `--store-durations` arg to get it to output partial durations and upload those instead?
Could the same thing maybe be achieved by specifying which file to read from, and which to write from @mbkroese? Since we only write durations for the tests run, the...
> if the read and write location are the same, we would overwrite our current durations with those of the group. Whereas in the current situation (where read and write...
If we said `pytest --input=.durations --output=.durations` then we should end up with ``` {'a': 5, 'b': 2, 'c': 3} ``` But if we say `pytest --input=.durations --output=.durations-${{ matrix.group }}` Then...
If `--store-durations=group` would just write group durations to the durations file, I guess that would also be equivalent for my use-case, so I don't mind how it's implemented. @michamos or...
If you set up the functionality with argparse, you can use the Poetry scripts feature to make the command runnable with any command you want 🙂 https://python-poetry.org/docs/pyproject/#scripts
Whoops, that's unfortunate. I could probably add a test and make sure it works again sometime this week if needed 🙂 Just for the sake of my own curiosity @alexforencich,...
Opened a quick PR. Please take a look when you have time 🙂
Cool, that's a nice new feature then 😊 Would you be interested in opening a PR for this?
Thanks for bringing this up @pbk0 👏 I just have a few questions, in case you already know: - What happens when you run `poetry plugin add `? Does it...