Skip to content

Commit ae0bfec

Browse files
committed
try and enable all the skipped tests
1 parent 214b817 commit ae0bfec

File tree

2 files changed

+8
-27
lines changed

2 files changed

+8
-27
lines changed

.github/workflows/test-installers.yml

Lines changed: 1 addition & 22 deletions
Original file line numberDiff line numberDiff line change
@@ -40,8 +40,7 @@ jobs:
4040
- windows_msi
4141
- windows_setup
4242
- linux_deb
43-
# TODO: Re-enable (see https://github.com/mongodb-js/compass/actions/runs/13281152689/job/37079619474)
44-
# - linux_tar
43+
- linux_tar
4544
# TODO: Enable (needs a docker container)
4645
- linux_rpm
4746
hadron-distribution:
@@ -105,12 +104,6 @@ jobs:
105104
install-update-server: true
106105

107106
exclude:
108-
# TODO: See https://github.com/mongodb-js/compass/actions/runs/13281152689/job/37079620322
109-
- package: osx_dmg
110-
test: auto-update-from
111-
# TODO: See https://github.com/mongodb-js/compass/actions/runs/13281152689/job/37079621700
112-
- package: windows_setup
113-
test: auto-update-from
114107
# Skip auto-update tests for isolated and readonly distributions for now
115108
# This is not supported by the update server we're using in the test harness
116109
- hadron-distribution: compass-isolated
@@ -121,20 +114,6 @@ jobs:
121114
test: auto-update-from
122115
- hadron-distribution: compass-readonly
123116
test: auto-update-to
124-
# Temporary skip failing auto-update-to tests
125-
- test: auto-update-to
126-
package: osx_dmg
127-
- test: auto-update-to
128-
package: windows_zip
129-
- test: auto-update-to
130-
package: windows_msi
131-
- test: auto-update-to
132-
package: windows_setup
133-
# Waiting for https://github.com/10gen/compass-mongodb-com/pull/122 to be released
134-
- test: auto-update-to
135-
package: linux_deb
136-
- test: auto-update-to
137-
package: linux_rpm
138117

139118
# Skip time-to-first-query tests for readonly because it doesn't have editable documents
140119
# See https://github.com/mongodb-js/compass/actions/runs/13286945911/job/37097791601

packages/compass-smoke-tests/src/tests/auto-update-to.ts

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -57,11 +57,13 @@ export async function testAutoUpdateTo(context: SmokeTestsContext) {
5757
bucket_key_prefix: context.bucketKeyPrefix,
5858
});
5959
} else {
60-
process.env.PUBLISHED_RELEASES = JSON.stringify({
61-
name: version,
62-
body: version,
63-
bucket_key_prefix: context.bucketKeyPrefix,
64-
});
60+
process.env.PUBLISHED_RELEASES = JSON.stringify([
61+
{
62+
name: version,
63+
body: version,
64+
bucket_key_prefix: context.bucketKeyPrefix,
65+
},
66+
]);
6567
}
6668

6769
const server = await startAutoUpdateServer();

0 commit comments

Comments
 (0)