nix-scripts/artiq-fast/windows/manual-test-run.nix

11 lines
380 B
Nix
Raw Permalink Normal View History

2020-06-22 17:45:18 +08:00
{ pkgs ? import <nixpkgs> {} }:
2019-04-08 23:41:05 +08:00
let
2020-06-22 17:45:18 +08:00
artiqpkgs = import ../. { inherit pkgs; };
run-test = import ./run-test.nix {
inherit pkgs artiqpkgs;
testCommand = "set ARTIQ_ROOT=%cd%\\Anaconda3\\envs\\artiq-env\\Lib\\site-packages\\artiq\\examples\\kc705_nist_clock&& python -m unittest discover -v sipyco.test && python -m unittest discover -v artiq.test";
};
in
2020-06-22 17:45:18 +08:00
run-test