Skip to content

Commit

Permalink
Add "Question" issue template (#122)
Browse files Browse the repository at this point in the history
  • Loading branch information
btschwertfeger committed Jul 6, 2023
1 parent 4563042 commit 6b60f3b
Show file tree
Hide file tree
Showing 4 changed files with 25 additions and 6 deletions.
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

0 comments on commit 6b60f3b

Please sign in to comment.