Skip to content

Commit 3c026ac

Browse files
tests
1 parent c443b66 commit 3c026ac

File tree

4 files changed

+7
-6
lines changed

4 files changed

+7
-6
lines changed

scripts/init.mk

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -48,6 +48,7 @@ _install-dependency: # Install asdf dependency - mandatory: name=[listed in the
4848
_install-dependencies: # Install all the dependencies listed in .tool-versions
4949
for plugin in $$(grep '^[a-z]' .tool-versions | cut -f1 -d' '); do \
5050
echo "Installing $${plugin}..."; \
51+
$(MAKE) _install-dependency name=$${plugin}; \
5152
done
5253

5354
clean:: # Remove all generated and temporary files (common) @Operations

tests/e2e-tests/README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
# E2E Tests
704 Bytes
Binary file not shown.

tests/e2e-tests/pyproject.toml

Lines changed: 5 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,15 @@
22
name = "e2e-tests"
33
version = "0.1.0"
44
description = ""
5-
authors = [
6-
{name = "namitha.prabhu",email = "[email protected]"}
7-
]
5+
authors = [{ name = "namitha.prabhu", email = "[email protected]" }]
86
readme = "README.md"
97
requires-python = ">=3.12,<4.0"
10-
dependencies = [
11-
"pytest-nhsd-apim (==5.0.6)"
12-
]
8+
dependencies = ["pytest-nhsd-apim (==5.0.6)"]
139

1410

1511
[build-system]
1612
requires = ["poetry-core>=2.0.0,<3.0.0"]
1713
build-backend = "poetry.core.masonry.api"
14+
15+
[tool.poetry]
16+
package-mode = false

0 commit comments

Comments
 (0)