Skip to content
This repository was archived by the owner on May 2, 2025. It is now read-only.

Commit 5e9a7d6

Browse files
committed
Remove unnecessary files
1 parent 8be3323 commit 5e9a7d6

30 files changed

+16
-1207
lines changed

.cookiecutter/cookiecutter.json

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,22 @@
22
"template": "https://github.com/hypothesis/cookiecutters",
33
"checkout": null,
44
"directory": "pyapp",
5-
"ignore": [],
5+
"ignore": [
6+
".github/workflows/ci.yml",
7+
".github/workflows/keepalive.yml",
8+
"pyproject.toml",
9+
"requirements/checkformatting.*",
10+
"requirements/coverage.*",
11+
"requirements/format.*",
12+
"requirements/functests.*",
13+
"requirements/lint.*",
14+
"requirements/tests.*",
15+
"requirements/typecheck.*",
16+
"Makefile",
17+
"tox.ini",
18+
"flower/*",
19+
"tests/*"
20+
],
621
"extra_context": {
722
"name": "Flower",
823
"package_name": "flower",

.github/workflows/ci.yml

Lines changed: 0 additions & 141 deletions
This file was deleted.

.github/workflows/keepalive.yml

Lines changed: 0 additions & 23 deletions
This file was deleted.

Makefile

Lines changed: 0 additions & 62 deletions
Original file line numberDiff line numberDiff line change
@@ -16,62 +16,6 @@ $(call help,make dev,run the whole app \(all workers\))
1616
dev: python
1717
@pyenv exec tox -qe dev
1818

19-
.PHONY: shell
20-
$(call help,make shell,"launch a Python shell in this project's virtualenv")
21-
shell: python
22-
@pyenv exec tox -qe dev --run-command 'ipython'
23-
24-
.PHONY: lint
25-
$(call help,make lint,"lint the code and print any warnings")
26-
lint: python
27-
@pyenv exec tox -qe lint
28-
29-
.PHONY: fix
30-
$(call help,make fix,"apply fixes to resolve lint violations")
31-
fix: python
32-
@pyenv exec tox -qe lint -- ruff check --fix-only flower tests bin
33-
34-
.PHONY: noqa
35-
$(call help,make noqa,"add noqa comments to suppress lint violations")
36-
noqa: python
37-
@pyenv exec tox -qe lint -- ruff check --add-noqa flower tests bin
38-
39-
.PHONY: typecheck
40-
$(call help,make typecheck,"type check the code and print any warnings")
41-
typecheck: python
42-
@pyenv exec tox -qe typecheck
43-
44-
.PHONY: format
45-
$(call help,make format,"format the code")
46-
format: python
47-
@pyenv exec tox -qe format
48-
49-
.PHONY: checkformatting
50-
$(call help,make checkformatting,"crash if the code isn't correctly formatted")
51-
checkformatting: python
52-
@pyenv exec tox -qe checkformatting
53-
54-
.PHONY: test
55-
$(call help,make test,"run the unit tests")
56-
test: python
57-
@pyenv exec tox -qe tests
58-
59-
.PHONY: coverage
60-
$(call help,make coverage,"run the tests and print the coverage report")
61-
coverage: python
62-
@pyenv exec tox -qe 'tests,coverage'
63-
64-
.PHONY: functests
65-
$(call help,make functests,"run the functional tests")
66-
functests: python
67-
@pyenv exec tox -qe functests
68-
69-
.PHONY: sure
70-
$(call help,make sure,"make sure that the formatting$(comma) linting and tests all pass")
71-
sure: python
72-
sure:
73-
@pyenv exec tox --parallel -qe 'checkformatting,lint,typecheck,tests,coverage,functests'
74-
7519
# Tell make how to compile requirements/*.txt files.
7620
#
7721
# `touch` is used to pre-create an empty requirements/%.txt file if none
@@ -92,10 +36,6 @@ requirements/%.txt: requirements/%.in python
9236
# knows what order to re-compile them in and knows to re-compile a file if a
9337
# file that it depends on has been changed.
9438
requirements/dev.txt: requirements/prod.txt
95-
requirements/tests.txt: requirements/prod.txt
96-
requirements/functests.txt: requirements/prod.txt
97-
requirements/lint.txt: requirements/tests.txt requirements/functests.txt
98-
requirements/typecheck.txt: requirements/prod.txt
9939

10040
# Add a requirements target so you can just run `make requirements` to
10141
# re-compile *all* the requirements files at once.
@@ -136,5 +76,3 @@ clean:
13676
.PHONY: python
13777
python:
13878
@bin/make_python
139-
140-
-include flower.mk

flower/__init__.py

Whitespace-only changes.

flower/__main__.py

Lines changed: 0 additions & 5 deletions
This file was deleted.

flower/app.py

Lines changed: 0 additions & 9 deletions
This file was deleted.

flower/core.py

Lines changed: 0 additions & 2 deletions
This file was deleted.

0 commit comments

Comments
 (0)