Skip to content

Latest commit

 

History

History
52 lines (31 loc) · 1.59 KB

File metadata and controls

52 lines (31 loc) · 1.59 KB

Spectra.jl

CI codecov GitHub

Utilities for interfacing with astronomical spectra and synthetic spectra libraries.

Warning: This is a work in progress and is under heavy development

Primary Author: Miles Lucas @mileslucas

Installation

Currently this package can only be installed from github. To do so, either clone this repository and install it or

pkg> add https://github.com/JuliaAstro/Spectra.jl

from the pkg command line (Press ] from Julia REPL)

Developer documentation

Below we show the commands to run from the package root level to develop the tests and documentation.

Tests

julia --proj

julia> import Pkg

# List tests
julia> Pkg.test("Spectra"; test_args = `--list`)

# Run specific testsets by name. Will match with `startswith`
julia> Pkg.test("Spectra"; test_args = `--verbose <testset name>`)

Docs

Assuming LiveServer.jl is in your global environment:

julia --proj=docs/

julia> using LiveServer

julia> servedocs(; include_dirs = ["src/"])