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
@@ -98,12 +100,14 @@ All in all, to add a new case study:
98
100
1. Update the content in the new file with your case study text.
99
101
1. Add an entry to `JuliaAstro.github.io/docs/case_studies/<case study category>/config.json` with your new case study filename. Note that trailing commas are not supported in the JSON spec.
100
102
101
-
## Testing locally / developer docs
103
+
## Developer docs
104
+
105
+
### Documentation
102
106
103
107
Add [LiveServer.jl](https://github.com/JuliaDocs/LiveServer.jl) to your global env and then run the following in the `JuliaAstro.github.io/` folder:
104
108
105
109
```julia-repl
106
-
> julia --proj=docs/
110
+
julia --proj=docs/
107
111
108
112
julia> using LiveServer
109
113
@@ -117,3 +121,24 @@ The `include_dirs` arg allows our internal Revise worklow to pick up changes in
117
121
118
122
See our [Contributing page](https://juliaastro.org/home/#Contributing) for more.
119
123
124
+
### Testing
125
+
126
+
Run all tests:
127
+
128
+
```julia-repl
129
+
julia --proj
130
+
131
+
julia> ]
132
+
133
+
pkg> test
134
+
```
135
+
136
+
Run specific tests (currently `packages_release` and `packages_dev`):
137
+
138
+
```julia-repl
139
+
julia --proj
140
+
141
+
julia> import Pkg
142
+
143
+
julia> Pkg.test("JuliaAstroDocs"; test_args=`--verbose packages_release`) # or packages_dev
0 commit comments