Skip to content

Commit

Permalink
test: exclude threhold tests from all tests
Browse files Browse the repository at this point in the history
  • Loading branch information
arealmaas committed Jan 14, 2025
1 parent 8f5ce91 commit 9f85f0f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 12 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/ci-cd-yt01.yml
Original file line number Diff line number Diff line change
Expand Up @@ -138,9 +138,9 @@ jobs:
max-parallel: 1
matrix:
files:
- tests/k6/tests/serviceowner/serviceOwnerSearchWithThresholds.js
- tests/k6/tests/serviceowner/createDialogWithThresholds.js
- tests/k6/tests/enduser/enduserSearchWithThresholds.js
- tests/k6/tests/serviceowner/performance/serviceOwnerSearchWithThresholds.js
- tests/k6/tests/serviceowner/performance/createDialogWithThresholds.js
- tests/k6/tests/enduser/performance/enduserSearchWithThresholds.js
fail-fast: false
with:
environment: yt01
Expand Down
2 changes: 0 additions & 2 deletions tests/k6/tests/enduser/all-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,13 +2,11 @@
import { default as dialogDetails } from './dialogDetails.js';
import { default as dialogSearch } from './dialogSearch.js';
import { default as dialogSystemLabelLog } from './dialogSystemLabelLog.js';
import { default as enduserSearchWithThresholds } from './enduserSearchWithThresholds.js';
import { default as parties } from './parties.js';

export default function() {
dialogDetails();
dialogSearch();
dialogSystemLabelLog();
enduserSearchWithThresholds();
parties();
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { default as run } from "./performance/enduser-search.js";
import { default as run } from "./enduser-search.js";

export let options = {
summaryTrendStats: ['avg', 'min', 'med', 'max', 'p(95)', 'p(99)', 'p(99.5)', 'p(99.9)', 'count'],
Expand Down
4 changes: 0 additions & 4 deletions tests/k6/tests/serviceowner/all-tests.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
import { default as authentication } from './authentication.js';
import { default as authorization } from './authorization.js';
import { default as concurrency } from './concurrency.js';
import { default as createDialogWithThresholds } from './createDialogWithThresholds.js';
import { default as dialogCreateActivity } from './dialogCreateActivity.js';
import { default as dialogCreateExternalResource } from './dialogCreateExternalResource.js';
import { default as dialogCreateInvalidActionCount } from './dialogCreateInvalidActionCount.js';
Expand All @@ -12,13 +11,11 @@ import { default as dialogCreateUpdatePatchDeleteCorrespondenceResource } from '
import { default as dialogDetails } from './dialogDetails.js';
import { default as dialogSearch } from './dialogSearch.js';
import { default as dialogUpdateActivity } from './dialogUpdateActivity.js';
import { default as serviceOwnerSearchWithThresholds } from './serviceOwnerSearchWithThresholds.js';

export default function() {
authentication();
authorization();
concurrency();
createDialogWithThresholds();
dialogCreateActivity();
dialogCreateExternalResource();
dialogCreateInvalidActionCount();
Expand All @@ -28,5 +25,4 @@ export default function() {
dialogDetails();
dialogSearch();
dialogUpdateActivity();
serviceOwnerSearchWithThresholds();
}
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { default as run } from "./performance/create-dialog.js";
import { default as run } from "./create-dialog.js";

export let options = {
summaryTrendStats: ['avg', 'min', 'med', 'max', 'p(95)', 'p(99)', 'p(99.5)', 'p(99.9)', 'count'],
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { default as run } from "./performance/serviceowner-search.js";
import { default as run } from "./serviceowner-search.js";

export let options = {
summaryTrendStats: ['avg', 'min', 'med', 'max', 'p(95)', 'p(99)', 'p(99.5)', 'p(99.9)', 'count'],
Expand Down

0 comments on commit 9f85f0f

Please sign in to comment.