Skip to content

Commit

Permalink
Use ssh for cruft updates
Browse files Browse the repository at this point in the history
  • Loading branch information
gdesmar committed Jan 8, 2025
1 parent 8071621 commit 65f1d34
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .cruft.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"template": "https://github.com/CybercentreCanada/assemblyline-service-template.git",
"template": "git@github.com:CybercentreCanada/assemblyline-service-template.git",
"commit": "99becf8ed2990a4063a5bb1f8ce878824a5a1a7b",
"checkout": null,
"context": {
Expand All @@ -16,7 +16,7 @@
"org_name_full": "CybercentreCanada",
"org_name_short": "cccs",
"license": "mit",
"_template": "https://github.com/CybercentreCanada/assemblyline-service-template.git"
"_template": "git@github.com:CybercentreCanada/assemblyline-service-template.git"
}
},
"directory": null
Expand Down
3 changes: 3 additions & 0 deletions tests/test_elfparser_samples.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
import os
import time

import pytest
from assemblyline.common.importing import load_module_by_path
Expand All @@ -18,4 +19,6 @@

@pytest.mark.parametrize("sample", th.result_list())
def test_sample(sample):
start_time = time.time()
th.run_test_comparison(sample)
print(f"Time elapsed for {sample}: {round(time.time() - start_time)}s")

0 comments on commit 65f1d34

Please sign in to comment.