Skip to content
This repository was archived by the owner on Oct 24, 2025. It is now read-only.

Commit a850a70

Browse files
committed
test: Use simpler packer config
1 parent 01687c7 commit a850a70

File tree

2 files changed

+11
-1
lines changed

2 files changed

+11
-1
lines changed

tests/resources/simple-test.json

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,10 @@
1+
{
2+
"builders": [
3+
{
4+
"type": "null",
5+
"ssh_host": "127.0.0.1",
6+
"ssh_username": "root",
7+
"ssh_password": "password"
8+
}
9+
]
10+
}

tests/test_packer.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
PACKER_PATH = '/usr/bin/packer'
77
TEST_RESOURCES_DIR = 'tests/resources'
8-
TEST_PACKERFILE = os.path.join(TEST_RESOURCES_DIR, 'packerfile.json')
8+
TEST_PACKERFILE = os.path.join(TEST_RESOURCES_DIR, 'simple-test.json')
99
TEST_BAD_PACKERFILE = os.path.join(TEST_RESOURCES_DIR, 'badpackerfile.json')
1010

1111

0 commit comments

Comments
 (0)