-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Feat: [SymonClient] Use Piscina for reporting (#1157)
* init * It's working! * Fix tests * Build when testing * Fix test reporter * Fix typing * add more timeout for symon test --------- Co-authored-by: Nico Prananta <[email protected]>
- Loading branch information
1 parent
073ab56
commit 5ecc922
Showing
10 changed files
with
2,674 additions
and
4,681 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
let | ||
pkgs = import <nixpkgs> {}; | ||
in | ||
pkgs.mkShell { | ||
packages = [ | ||
# Required packages | ||
pkgs.git | ||
pkgs.nodejs | ||
pkgs.sqlite | ||
]; | ||
} |
Oops, something went wrong.