Skip to content

Commit 5b46dec

Browse files
authored
chore: fix up scripts/run-tests missing riot dep (#14684)
## Description When I was developing locally I had `riot` installed globally, so I missed the missing dependency here. ## Testing <!-- Describe your testing strategy or note what tests are included --> ## Risks <!-- Note any risks associated with this change, or "None" if no risks --> ## Additional Notes <!-- Any other information that would be helpful for reviewers -->
1 parent 4e08fca commit 5b46dec

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

scripts/run-tests

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
#!/usr/bin/env uv run --script
2+
# -*- mode: python -*-
23
# /// script
34
# requires-python = ">=3.8"
45
# dependencies = [
6+
# "riot>=0.20.1",
57
# "ruamel.yaml>=0.17.21",
68
# ]
79
# ///
@@ -21,8 +23,7 @@ import re
2123
import subprocess
2224
import sys
2325
from pathlib import Path
24-
from typing import Dict, List, Set, Optional, Tuple, NamedTuple
25-
import tempfile
26+
from typing import Dict, List, Set, NamedTuple
2627

2728
# Add project root and tests to Python path to import suitespec and riotfile
2829
ROOT = Path(__file__).parents[1]

0 commit comments

Comments
 (0)