Skip to content

Commit 4bb3264

Browse files
committed
Renewed execution environment.
1 parent 242beb5 commit 4bb3264

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

.github/workflows/tests.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ on:
66

77
jobs:
88
linux_tests:
9-
runs-on: ubuntu-20.04
9+
runs-on: ubuntu-latest
1010

1111
services:
1212
mailcatcher:
13-
image: dockage/mailcatcher:0.7.1
13+
image: dockage/mailcatcher:0.9.0
1414
ports:
1515
- 4456:1025
1616

tests/unit/Swift/Transport/Esmtp/Auth/NTLMAuthenticatorTest.php

+6
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,12 @@ public function testMessage1Generator()
2929

3030
public function testLMv1Generator()
3131
{
32+
if (true == getenv('GITHUB_ACTIONS')) {
33+
$this->markTestSkipped(
34+
'Cannot run test on CI due to legacy openssl ciphers'
35+
);
36+
}
37+
3238
$password = 'test1234';
3339
$challenge = 'b019d38bad875c9d';
3440
$lmv1 = '1879f60127f8a877022132ec221bcbf3ca016a9f76095606';

0 commit comments

Comments
 (0)