Jean-Paul Calderone

Results 134 issues of Jean-Paul Calderone

With a brand new dream2nix, generated by following the instructions on https://nix-community.github.io/dream2nix/guides/getting-started-python.html#build-the-project, the devShell is missing most of what it should have. For example: flake.nix: ```nix { inputs.dream2nix.url = "github:nix-community/dream2nix";...

In the "Running effects" section, README.md contains this example code: ``` example1 :: Algebra sig m => [a] -> m (Int, ()) example1 list = runState 0 $ do i...

documentation

Currently if the Docker container is started as a non-root user (eg `nobody`), Nix commands fail with permission errors. For example: ``` ❯ docker run --rm -it --user nobody nixos/nix:2.16.1...

macOS users actually use Telepresence, though, and presumably also the container method. If we want them to have a good experience, we need CI for this case. Unfortunately but maybe...

a:infra
v2

Before pytest starts to run the tests, a line like the following is written by pytest-circleci-parallelized: ``` running 4 items due to CircleCI parallelism: integration.test_get_put, integration.test_get_put, integration.test_get_put, integration.test_get_put ``` This...

If a test is decorated with `mark.parametrize` and given several values, it is expanded into several separate tests. Each of these tests could be split up and run in parallel...

``` ====================================================================== FAIL: testDate3ConfusedHourAndYear (tests.TestComplexDateTimes.test) ---------------------------------------------------------------------- Traceback (most recent call last): File "/build/parsedatetime-2.4/tests/TestComplexDateTimes.py", line 47, in testDate3ConfusedHourAndYear 6, 30, 12, 0, 0).timetuple(), 3)) File "/build/parsedatetime-2.4/tests/utils.py", line 22, in decoratedComparator self.fail(failureMessage...

By default pyparsing skips over all leading whitespace before attempting to match the next element in an expression. Thus, all of the explicit `White()` terms in our action definitions are...

Ability to restrict the movement of a `Thing` is implemented within the `Thing` class itself, in the `moveTo` method, where the `portable` attribute is checked. However, there's a system for...