Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Appearance settings

Latest commit

 

History

History
History
46 lines (36 loc) · 1.05 KB

File metadata and controls

46 lines (36 loc) · 1.05 KB
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
# Set PYTHON variable according to OS
ifeq ($(OS),Windows_NT)
PYTHON=python
else
PYTHON=python3
endif
pytest:
$(PYTHON) -m pytest tests
pytest-slow:
$(PYTHON) -m pytest tests -vv -m slow --runslow
coverage:
$(PYTHON) -m pytest --cov=rocketpy tests
coverage-report:
$(PYTHON) -m pytest --cov=rocketpy tests --cov-report html
install:
$(PYTHON) -m pip install --upgrade pip
pip install -r requirements.txt
pip install -r requirements-optional.txt
pip install -r requirements-tests.txt
pip install -e .
format:
@ruff check --select I --fix rocketpy/ tests/ docs/
@ruff format rocketpy/ tests/ docs/
@echo Ruff formatting completed.
lint: ruff-lint pylint
ruff-lint:
@echo Running ruff check...
@ruff check rocketpy/ tests/ docs/ --output-file=.ruff-report.txt
@echo Ruff report generated at ./.ruff-report.txt
pylint:
@echo Running pylint check...
@pylint rocketpy/ tests/ docs/ --output=.pylint-report.txt
@echo Pylint report generated at ./.pylint-report.txt
build-docs:
cd docs && $(PYTHON) -m pip install -r requirements.txt && make html
cd ..
Morty Proxy This is a proxified and sanitized view of the page, visit original site.