Skip to content

Commit

Permalink
Skip mysql e2e tests on CI (#706)
Browse files Browse the repository at this point in the history
  • Loading branch information
MasterOdin authored May 9, 2022
1 parent 64925d6 commit a34fd51
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion test/e2e/test.ssh-mysql.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,10 @@ const SQLECTRON_DB_CORE_PATH = path.join(__dirname, '../../../sqlectron-db-core'
const CONFIG_SAMPLE_PATH = path.join(BASE_PATH, 'sample-sqlectron.json');
const CONFIG_PATH = path.join(BASE_PATH, 'sqlectron.json');

describe('SSH MySQL', function () {
// Skip these tests on CI as they weirdly fail, see https://github.com/sqlectron/sqlectron-gui/issues/705
const describeFunc = process.env.CI ? describe.skip : describe;

describeFunc('SSH MySQL', function () {
let app;
let mainWindow;

Expand Down

0 comments on commit a34fd51

Please sign in to comment.