Skip to content

Commit

Permalink
micropython: fix tests on darwin
Browse files Browse the repository at this point in the history
  • Loading branch information
tpwrules committed Aug 21, 2024
1 parent 2e0d57b commit 8234ac1
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion pkgs/development/interpreters/micropython/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -40,8 +40,10 @@ stdenv.mkDerivation rec {

doCheck = true;

__darwinAllowLocalNetworking = true; # needed for select_poll_eintr test

skippedTests = " -e select_poll_fd"
+ lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) " -e ffi_callback"
+ lib.optionalString (stdenv.isDarwin && stdenv.isAarch64) " -e ffi_callback -e float_parse -e float_parse_doubleproc"
+ lib.optionalString (stdenv.isLinux && stdenv.isAarch64) " -e float_parse"
;

Expand Down

0 comments on commit 8234ac1

Please sign in to comment.