Skip to content

Commit

Permalink
Update codecov settings
Browse files Browse the repository at this point in the history
  • Loading branch information
tvdijen committed Jul 27, 2023
1 parent 69cc41b commit 1b47bbd
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/php.yml
Expand Up @@ -268,3 +268,7 @@ jobs:

- name: Codecov
uses: codecov/codecov-action@v3
with:
token: ${{ secrets.CODECOV_TOKEN }}
fail_ci_if_error: true
verbose: true
3 changes: 3 additions & 0 deletions tests/Assert/URITest.php
Expand Up @@ -77,6 +77,7 @@ public static function provideURI(): array
'same-doc' => [true, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
'url' => [true, 'https://www.simplesamlphp.org'],
'bogus' => [false, 'stupid value'],
'spn' => [true, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
];
}

Expand All @@ -91,6 +92,7 @@ public static function provideURL(): array
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
'urn' => [false, 'urn:x-simplesamlphp:phpunit'],
'bogus' => [false, 'stupid value'],
'spn' => [false, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
];
}

Expand All @@ -105,6 +107,7 @@ public static function provideURN(): array
'url' => [false, 'https://www.simplesamlphp.org'],
'same-doc' => [false, '#_53d830ab1be17291a546c95c7f1cdf8d3d23c959e6'],
'bogus' => [false, 'stupid value'],
'spn' => [false, 'spn:a4cf592f-a64c-46ff-a788-b260f474525b'],
];
}
}

0 comments on commit 1b47bbd

Please sign in to comment.