Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

mononoke/integration tests: fix up integration tests using hooks #48

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 0 additions & 3 deletions eden/mononoke/tests/integration/run_tests_getdeps.py
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,6 @@
"test-gitimport-octopus.t", # Unknown, fails on GitHub MacOs
"test-gitimport.t", # Issue with hggit extension
"test-hook-tailer.t", # Issue with hggit extension
"test-hooks.t", # Hooks are not in OSS yet
"test-infinitepush-lfs.t", # Timed out
"test-large-path-and-content.t", # Complex bash issues
"test-lfs-copytracing.t", # Timed out
Expand All @@ -109,9 +108,7 @@
"test-mononoke-hg-sync-job-generate-bundles-lfs-verification.t", # Timed out
"test-mononoke-hg-sync-job-generate-bundles-lfs.t", # Timed out
"test-push-protocol-lfs.t", # Timed out
"test-push-redirector-pushrebase-hooks.t", # Hooks are not in OSS yet
"test-pushrebase-block-casefolding.t", # Most likely MacOS path case insensitivity
"test-pushrebase-discovery.t", # Hooks are not in OSS yet
"test-remotefilelog-lfs.t", # Timed out
"test-scs-blame.t", # Missing SCS_SERVER
"test-scs-common-base.t", # Missing SCS_SERVER
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
> hook_name="deny_files"
> [[hooks]]
> name="deny_files"
> [hooks.config_string_lists]
> deny_patterns = [
> "/[.]git/",
> ]
> CONFIG

$ cat > $TESTTMP/mononoke_tunables.json <<EOF
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,10 @@
> hook_name="deny_files"
> [[hooks]]
> name="deny_files"
> [hooks.config_string_lists]
> deny_patterns = [
> "/[.]git/",
> ]
> CONFIG
$ start_large_small_repo --local-configerator-path="$TESTTMP/configerator"
Starting Mononoke server
Expand Down