Skip to content

Commit

Permalink
Merge pull request #122 from NixOS/update_flake_lock_action
Browse files Browse the repository at this point in the history
disable tests on macos
  • Loading branch information
Mic92 authored Oct 20, 2024
2 parents c3fb03f + a38b6ec commit 02905ca
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 6 deletions.
7 changes: 2 additions & 5 deletions .mergify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,8 @@ queue_rules:
- name: default
merge_conditions:
- check-success=buildbot/nix-build
defaults:
actions:
queue:
allow_merging_configuration_change: true
method: rebase
batch_size: 5
merge_method: rebase
pull_request_rules:
- name: merge using the merge queue
conditions:
Expand Down
4 changes: 3 additions & 1 deletion default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@
pytest-mock,
setuptools,
git,
stdenv,
}:

buildPythonApplication {
Expand All @@ -20,7 +21,8 @@ buildPythonApplication {
]
}"
];
doCheck = true;
# FIXME: hang on macOS just now
doCheck = stdenv.isLinux;
nativeBuildInputs = [ setuptools ];
nativeCheckInputs = [
pytest-mock
Expand Down

0 comments on commit 02905ca

Please sign in to comment.