Skip to content

Commit 9e46a89

Browse files
author
Will Toozs
committed
fixup: remove skips
1 parent 224c1a3 commit 9e46a89

File tree

2 files changed

+7
-9
lines changed

2 files changed

+7
-9
lines changed

.github/workflows/tests.yaml

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -227,13 +227,11 @@ jobs:
227227
- name: Setup CI services
228228
run: docker-compose up -d
229229
working-directory: .github/docker
230-
# TODO CLDSRV-431 re-enable file backend tests
231-
# Note: Disabled here to save time as due to API logic changes only 28 passing, 474 pending and 696 failing
232-
# - name: Run file ft tests
233-
# run: |-
234-
# set -o pipefail;
235-
# bash wait_for_local_port.bash 8000 40
236-
# yarn run ft_test | tee /tmp/artifacts/${{ github.job }}/tests.log
230+
- name: Run file ft tests
231+
run: |-
232+
set -o pipefail;
233+
bash wait_for_local_port.bash 8000 40
234+
yarn run ft_test | tee /tmp/artifacts/${{ github.job }}/tests.log
237235
- name: Upload logs to artifacts
238236
uses: scality/action-artifacts@v3
239237
with:

tests/unit/api/transientBucket.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -67,8 +67,8 @@ const creationDate = new Date().toJSON();
6767
const usersBucket = new BucketInfo(usersBucketName,
6868
userBucketOwner, userBucketOwner, creationDate);
6969
const locationConstraint = 'us-east-1';
70-
// TODO CLDSRV-431 remove skip
71-
describe.skip('transient bucket handling', () => {
70+
71+
describe('transient bucket handling', () => {
7272
beforeEach(done => {
7373
cleanup();
7474
const bucketMD = new BucketInfo(bucketName, canonicalID,

0 commit comments

Comments
 (0)