Merge pull request #56744 from matthewbauer/macos-10-12

Update macOS to 10.12
This commit is contained in:
Matthew Bauer
2019-04-26 22:20:03 -04:00
committed by GitHub
196 changed files with 1221 additions and 3284 deletions

View File

@@ -31,7 +31,7 @@ if isPyPy then null else buildPythonPackage rec {
# The tests use -Werror but with python3.6 clang detects some unreachable code.
NIX_CFLAGS_COMPILE = stdenv.lib.optionals stdenv.cc.isClang [ "-Wno-unused-command-line-argument" "-Wno-unreachable-code" ];
doCheck = !stdenv.hostPlatform.isMusl; # TODO: Investigate
doCheck = !stdenv.hostPlatform.isMusl && !stdenv.isDarwin; # TODO: Investigate
checkPhase = ''
py.test -k "not test_char_pointer_conversion"
'';