Skip to content

Commit b799910

Browse files
committed
test: fix test_main.py unit tests to add description (no bug)
This fixes a new test I recently added that wasn't picked up by my previous try push.
1 parent cd026ba commit b799910

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/taskgraph/test/test_main.py

+5
Original file line numberDiff line numberDiff line change
@@ -76,6 +76,7 @@ def test_output_file(run_main, tmpdir):
7676
"a": {
7777
"attributes": {"kind": "task"},
7878
"dependencies": {"dep": "b"},
79+
"description": "",
7980
"kind": "task",
8081
"label": "a",
8182
"optimization": None,
@@ -87,6 +88,7 @@ def test_output_file(run_main, tmpdir):
8788
"b": {
8889
"attributes": {"kind": "task", "thing": True},
8990
"dependencies": {},
91+
"description": "",
9092
"kind": "task",
9193
"label": "b",
9294
"optimization": None,
@@ -105,6 +107,7 @@ def test_output_file(run_main, tmpdir):
105107
"b": {
106108
"attributes": {"kind": "task", "thing": True},
107109
"dependencies": {},
110+
"description": "",
108111
"kind": "task",
109112
"label": "b",
110113
"optimization": None,
@@ -126,6 +129,7 @@ def test_output_file(run_main, tmpdir):
126129
"a": {
127130
"attributes": {"kind": "task"},
128131
"dependencies": {"dep": "b"},
132+
"description": "",
129133
"kind": "task",
130134
"label": "a",
131135
"optimization": None,
@@ -137,6 +141,7 @@ def test_output_file(run_main, tmpdir):
137141
"b": {
138142
"attributes": {"kind": "task"},
139143
"dependencies": {},
144+
"description": "",
140145
"kind": "task",
141146
"label": "b",
142147
"optimization": None,

0 commit comments

Comments
 (0)