You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -9,7 +9,7 @@ It lets you activate the test environment from a given package.
9
9
10
10
### Why is this useful?
11
11
12
-
This lets you run code in the test enviroment, interactively; giving you access to all your test-only dependencies.
12
+
This lets you run code in the test environment, interactively; giving you access to all your test-only dependencies.
13
13
When you run `]test` in the REPL, a new Julia process is started which activates a temporary environment containing the tested package together with all its test-only dependencies.
14
14
These can be either defined in the `[extras]` section in the package's `Project.toml` or in a separate `test/Project.toml`.
15
15
The special temporary environment is different than the plain package environment (which doesn't contain the extra test dependencies) or the `test/Project.toml` environment (which doesn't contain the package itself, and may not exist).
@@ -19,8 +19,8 @@ Julia does not offer an official mechanism to activate such an environment outsi
19
19
That's what `TestEnv.activate()` is for.
20
20
21
21
## Note on installation:
22
-
Like other developer focused tools, TestEnv.jl should not be added as a dependency of the package you are developing, but rather added to your global enviroment, so it is always available.
23
-
The easiest way to install it to the global enviroment is to start julia (without passing the `--project` argument), and then run `] add TestEnv`.
22
+
Like other developer focused tools, TestEnv.jl should not be added as a dependency of the package you are developing, but rather added to your global environment, so it is always available.
23
+
The easiest way to install it to the global environment is to start julia (without passing the `--project` argument), and then run `] add TestEnv`.
0 commit comments