Skip to content

Commit

Permalink
[to drop] only run specific tests
Browse files Browse the repository at this point in the history
  • Loading branch information
williamlardier committed Nov 28, 2024
1 parent 18730c0 commit 2281c03
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/scripts/end2end/run-e2e-ctst.sh
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
set -exu

ZENKO_NAME=${1:-end2end}
COMMAND=${2:-"premerge"}
COMMAND=${2:-"only"}
PARALLEL_RUNS=${PARALLEL_RUNS:-$(( ( $(nproc) + 1 ) / 2 ))}
RETRIES=${4:-3}

Expand Down
4 changes: 4 additions & 0 deletions tests/ctst/features/quotas/Quotas.feature
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ Feature: Quota Management for APIs
@Quotas
@CronJob
@DataWrite
@Only
Scenario Outline: Quotas are evaluated during write operations
Given an action "<action>"
And an upload size of <uploadSize> B for the object ""
Expand Down Expand Up @@ -68,6 +69,7 @@ Feature: Quota Management for APIs
@CronJob
@DataDeletion
@NonVersioned
@Only
Scenario Outline: Quotas are affected by deletion operations
Given an action "DeleteObject"
And a permission to perform the "PutObject" action
Expand Down Expand Up @@ -103,6 +105,7 @@ Feature: Quota Management for APIs
@CronJob
@DataDeletion
@NonVersioned
@Only
Scenario Outline: Quotas are affected by deletion operations between count items runs
Given an action "DeleteObject"
And a permission to perform the "PutObject" action
Expand Down Expand Up @@ -143,6 +146,7 @@ Feature: Quota Management for APIs
@Restore
@Dmf
@ColdStorage
@Only
Scenario Outline: Restored object expiration updates quotas
Given an action "<action>"
And a STORAGE_MANAGER type
Expand Down
2 changes: 1 addition & 1 deletion tests/ctst/run.sh
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ set -exu

# script used for local testing

COMMAND=${1:-"premerge"}
COMMAND=${1:-"only"}
PARALLEL_RUNS=${2:-4}

# Enable SDK - setting this to false will run the CLI mode
Expand Down

0 comments on commit 2281c03

Please sign in to comment.