Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/ci_pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,12 +28,13 @@ jobs:
- name: Install python dependencies
run: |
python -m pip install --upgrade pip
pip install .
pip install ".[test]"

- name: Inspect maxplotlib arguments
run: |
maxplotlib -h

- name: Run tests
run: |
pytest .
coverage run -m pytest .
coverage report --sort=cover
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,12 @@ Install the code and requirements with pip
pip install -e .
```

Additional dependencies for developers can be installed with

```
pip install -e ".[dev]"
```

Run the code with

```
Expand Down
12 changes: 7 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -18,17 +18,19 @@ dependencies = [
"matplotlib",
"pint",
"plotly",
]
[project.optional-dependencies]
test = [
"pytest",
"coverage",
]
dev = [
"maxplotlib[test]",
"ruff",
"black",
"isort",
"jupyterlab",
"maxtikzlib @ git+https://github.com/max-models/maxtikzlib.git@main",
]

[project.optional-dependencies]
dev = ["check-manifest"]
test = ["coverage"]
[project.urls]
"Source" = "https://github.com/max-models/maxplotlib"

Expand Down
35 changes: 0 additions & 35 deletions src/maxplotlib/logo/logo.py

This file was deleted.

Loading