Skip to content

Commit 69d3f49

Browse files
committed
Add pytest to dev shell
- Add pytest and pytest-asyncio to shell.nix dev environment
1 parent 4ba8c47 commit 69d3f49

1 file changed

Lines changed: 8 additions & 1 deletion

File tree

shell.nix

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,14 @@ let
44
default = import ./. { };
55
inherit (default) pkgs;
66

7-
pypkgs = pp: with pp; [ ] ++ pkgs.nix-csi.dependencies;
7+
pypkgs =
8+
pp:
9+
with pp;
10+
[
11+
pytest
12+
pytest-asyncio
13+
]
14+
++ pkgs.nix-csi.dependencies;
815
python = pkgs.python3.withPackages pypkgs;
916
xonsh = pkgs.xonsh.override {
1017
extraPackages = pypkgs;

0 commit comments

Comments
 (0)