Skip to content

Commit 6d379e3

Browse files
committed
resolve nits
1 parent 0b634ea commit 6d379e3

2 files changed

Lines changed: 5 additions & 6 deletions

File tree

.devcontainer/devcontainer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,10 +17,10 @@
1717
"UV_CACHE_DIR": "/cache/uv",
1818
"UV_PYTHON_CACHE_DIR": "/cache/uv-python",
1919
// Make a venv that is specific for this workspace path as the cache is shared
20-
"UV_PROJECT_ENVIRONMENT": "/cache/venv-for${localWorkspaceFolder}",
20+
"UV_PROJECT_ENVIRONMENT": "/cache/venv-for-${localWorkspaceFolder}",
2121
// Do the equivalent of "activate" the venv so we don't have to "uv run" everything
22-
"VIRTUAL_ENV": "/cache/venv-for${localWorkspaceFolder}",
23-
"PATH": "/cache/venv-for${localWorkspaceFolder}/bin:${containerEnv:PATH}"
22+
"VIRTUAL_ENV": "/cache/venv-for-${localWorkspaceFolder}",
23+
"PATH": "/cache/venv-for-${localWorkspaceFolder}/bin:${containerEnv:PATH}"
2424
},
2525
"customizations": {
2626
"vscode": {

pyproject.toml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,6 @@ dev = [
4949
"myst-parser",
5050
"pre-commit",
5151
"pydata-sphinx-theme>=0.15.4",
52-
"pyright",
5352
"pytest",
5453
"pyright<1.1.407", # https://github.com/bluesky/scanspec/issues/190
5554
"pytest-cov",
@@ -147,7 +146,7 @@ commands = [
147146
]
148147

149148
[tool.tox.env.tests]
150-
description = "Run tests with coverage"
149+
description = "Run unit tests with coverage"
151150
commands = [
152151
[
153152
"pytest",
@@ -163,7 +162,7 @@ commands = [
163162
]
164163

165164
[tool.tox.env.system-test]
166-
description = "Run tests with coverage"
165+
description = "Run system tests with coverage"
167166
commands = [
168167
[
169168
"pytest",

0 commit comments

Comments
 (0)