File tree Expand file tree Collapse file tree 2 files changed +23
-12
lines changed Expand file tree Collapse file tree 2 files changed +23
-12
lines changed Original file line number Diff line number Diff line change @@ -44,20 +44,20 @@ test:
44
44
.PHONY : test-py
45
45
test-py :
46
46
@echo " Tests are coming :( this is a placeholder and it's meant to fail!"
47
- $(env ) /bin/pytest -vv $(ARGS ) tests/ --log-cli-level=warning
47
+ $(conda_run ) -vv $(ARGS ) tests/ --log-cli-level=warning
48
48
49
49
.PHONY : test-ts
50
50
test-ts :
51
51
@echo " Tests are coming :( this is a placeholder and it's meant to fail!"
52
52
npm run tests
53
53
54
54
.PHONY : fmt
55
- fmt :
56
- $( env ) /bin/black -l 88 .
55
+ fmt : fmt-py fmt-ts
56
+ @echo " Format completed "
57
57
58
58
.PHONY : fmt-check
59
- fmt-check :
60
- $( env ) /bin/black -l 88 -- check .
59
+ fmt-check : fmt-ts-check fmt-py
60
+ @echo " Format check completed "
61
61
62
62
.PHONY : fmt-ts
63
63
fmt-ts :
@@ -69,16 +69,16 @@ fmt-ts-check:
69
69
70
70
.PHONY : fmt-py
71
71
fmt-py :
72
- $(env ) /bin/ black -l 88 .
72
+ $(conda_run ) black -l 88 .
73
73
74
74
.PHONY : fmt-py-check
75
75
fmt-py-check :
76
- $(env ) /bin/ black -l 88 --check .
76
+ $(conda_run ) black -l 88 --check .
77
77
78
78
.PHONY : lint
79
- lint :
80
- npm run lint
79
+ lint : lint-ts
80
+ @echo " Format check completed "
81
81
82
- .PHONY : lint-js
83
- lint-js :
84
- npm run lint
82
+ .PHONY : lint-ts
83
+ lint-ts :
84
+ $( conda_run ) npm run lint
Original file line number Diff line number Diff line change
1
+ channels :
2
+ - defaults
3
+ - conda-forge
4
+ dependencies :
5
+ - python=3.9
6
+ - pip=20.2.2
7
+ - pytest=7
8
+ - nodejs=16
9
+ - black
10
+ - isort
11
+ - codespell
You can’t perform that action at this time.
0 commit comments