Skip to content

Commit

Permalink
Add support for blueracer.io to make sure our tests stay fast (#184)
Browse files Browse the repository at this point in the history
* gardening: indent

* add support for blueracer.io to make sure our tests stay fast
  • Loading branch information
zupo authored Nov 17, 2022
1 parent dfb7f4d commit 4d50bb7
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 10 deletions.
5 changes: 5 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,6 +118,11 @@ jobs:

- run_tests

- run:
name: Upload test durations to BlueRacer.io
command: |
bash <(curl -s https://app.blueracer.io/upload)
test_310:
<<: *defaults
docker:
Expand Down
19 changes: 9 additions & 10 deletions shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -23,16 +23,15 @@ let
pyramid_openapi3 = ./.;
};
overrides = poetry2nix.defaultPoetryOverrides.extend ( self: super: {
autoflake = super.autoflake.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.hatchling ];
postInstall = ''
rm -f $out/lib/python3*/site-packages/LICENSE
'';
}
);

});
autoflake = super.autoflake.overridePythonAttrs (
old: {
buildInputs = (old.buildInputs or [ ]) ++ [ self.hatchling ];
postInstall = ''
rm -f $out/lib/python3*/site-packages/LICENSE
'';
}
);
});
});

in
Expand Down

0 comments on commit 4d50bb7

Please sign in to comment.