Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add "Question" issue template #122

Merged
merged 3 commits into from
Jul 6, 2023
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
2 changes: 1 addition & 1 deletion .github/ISSUE_TEMPLATE/feature_request.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
name: Feature request
about: Suggest an idea for this project
title: ""
labels: ""
labels: "Feature"
assignees: ""
---

Expand Down
9 changes: 9 additions & 0 deletions .github/ISSUE_TEMPLATE/question.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
name: General question
about: Help us to understand your findings
title: ""
labels: "Question"
assignees: ""
---

There is no stupid question.
5 changes: 4 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -40,13 +40,16 @@ install:
$(PYTHON) -m pip install .

## ======= T E S T I N G =======
## test Run the unittests
## test Run the unit tests
##
test:
$(PYTEST) $(PYTEST_OPTS) $(TEST_DIR)

tests: test

test-wip:
$(PYTEST) -m "wip" -vv $(TEST_DIR)

coverage:
$(PYTEST) $(PYTEST_COV_OPTS) $(TEST_DIR)

Expand Down
15 changes: 11 additions & 4 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[build-system]
requires = ["setuptools>=45", "setuptools_scm[toml]>=6.2", "wheel"]
requires = ["setuptools>=65.5.1", "setuptools_scm[toml]>=6.2", "wheel"]
build-backend = "setuptools.build_meta"

[project]
Expand Down Expand Up @@ -65,8 +65,15 @@ examples = ["matplotlib"]
include-package-data = false

[tool.setuptools.packages.find]
include = ["kraken*"]
exclude = ["docs*", "tests*", "examples*", ".env"]
include = [
"kraken*"
]
exclude = [
"docs*",
"tests*",
"examples*",
".env"
]

[tool.setuptools_scm]
write_to = "kraken/_version.py"
Expand All @@ -81,7 +88,7 @@ testpaths = ["tests"]

[tool.pytest.ini_options]
markers = [
"select: Used to run a specific test by hand.",
"wip: Used to run a specific test by hand.",
"spot: mark a test that tests a Spot endpoint.",
"spot_auth: mark a test that tests a authenticaed Spot endpoint.",
"spot_trade: mark a test that tests a Spot Trade endpoint.",
Expand Down