Skip to content

Commit

Permalink
Merge pull request #72 from us-irs/prep_v0.23.0
Browse files Browse the repository at this point in the history
prep next release
  • Loading branch information
robamu committed Jan 24, 2024
2 parents 2c3eda3 + b034366 commit 3f26a99
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 6 deletions.
17 changes: 12 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,19 +50,26 @@ py -m pip install spacepackets

You can find all examples [inside the documentation](https://spacepackets.readthedocs.io/en/latest/examples.html).


# Tests

All tests are provided in the `tests` folder and can be run with coverage information
by running
If you want to run the tests, it is recommended to install `pytest` and `coverage` (optional)
first. You also have to install the package with the optional `test` feature:

```sh
coverage run -m pytest
pip install coverage pytest
```

provided that `pytest` and `coverage` were installed with
Running tests regularly:

```sh
python3 -m pip install coverage pytest
pytest .
```

Running tests with coverage:

```sh
coverage run -m pytest
```

# Documentation
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ build-backend = "setuptools.build_meta"
name = "spacepackets"
description = "Various CCSDS and ECSS packet implementations"
readme = "README.md"
version = "0.22.0"
version = "0.23.0"
requires-python = ">=3.8"
license = {text = "Apache-2.0"}
authors = [
Expand Down

0 comments on commit 3f26a99

Please sign in to comment.