Skip to content

Commit 815a3c3

Browse files
Update to readme
1 parent dde8201 commit 815a3c3

File tree

3 files changed

+12
-5
lines changed

3 files changed

+12
-5
lines changed

.vscode/settings.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
"cSpell.words": [
88
"addopts",
99
"codegen",
10+
"Licence",
1011
"organisation",
1112
"pytest",
1213
"utilise",

README.md

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,7 @@ NOTE: This project is currently under initial development so isn't finalised, bu
1717
- [Configuration](#configuration)
1818
- [Getting Started](#getting-started)
1919
- [Utilities](#utilities)
20+
- [Contributing](#contributing)
2021
- [Contacts](#contacts)
2122
- [Licence](#licence)
2223

@@ -76,16 +77,21 @@ This blueprint also provides the following utility classes, that can be used to
7677
|Utility|Description|
7778
|-------|-----------|
7879
|[Axe](./docs/utility-guides/Axe.md)|Accessibility scanning using axe-core.|
80+
|[Date Time Utility](./docs/utility-guides/DateTimeUtility.md)|Basic functionality for managing date/times.|
7981
|NHSNumberTools|Basic tools for working with NHS numbers.|
8082

83+
## Contributing
84+
85+
Further guidance on contributing to this project can be found in our [contribution](./CONTRIBUTING.md) page.
86+
8187
## Contacts
8288

83-
If you have any queries regarding this blueprint, please contact [[email protected]](mailto:dave.harding1@nhs.net).
89+
If you have any ideas or require support for this project, please [raise an issue via this repository](https://github.com/nhs-england-tools/playwright-python-blueprint/issues/new/choose) using the appropriate template.
8490

85-
## Licence
91+
If you have any general queries regarding this blueprint, please contact [[email protected]](mailto:[email protected]).
8692

87-
> The [LICENCE.md](./LICENCE.md) file will need to be updated with the correct year and owner
93+
## Licence
8894

89-
Unless stated otherwise, the codebase is released under the MIT License. This covers both the codebase and any sample code in the documentation.
95+
Unless stated otherwise, the codebase is released under the [MIT License](LICENCE.md). This covers both the codebase and any sample code in the documentation.
9096

9197
Any HTML or Markdown documentation is [© Crown Copyright](https://www.nationalarchives.gov.uk/information-management/re-using-public-sector-information/uk-government-licensing-framework/crown-copyright/) and available under the terms of the [Open Government Licence v3.0](https://www.nationalarchives.gov.uk/doc/open-government-licence/version/3/).

docs/utility-guides/DateTimeUtility.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,4 +19,4 @@ The docstrings also specify when arguments are optional, and what the default va
1919
from tests_utils.date_time_utils import DateTimeUtils
2020

2121
def test_date_format(page: Page) -> None:
22-
expect(page.locator("#date")).to_contain_text(DateTimeUtils.current_datetime()))
22+
expect(page.locator("#date")).to_contain_text(DateTimeUtils.current_datetime())

0 commit comments

Comments
 (0)