Clement Vachet commited on
Commit
1f0b832
·
1 Parent(s): 237c90f

Add makefile for automated tasks

Browse files
Files changed (1) hide show
  1. Makefile +13 -0
Makefile ADDED
@@ -0,0 +1,13 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ .PHONY: lint
2
+ lint: # Lints our code.
3
+ python -m pylint ./
4
+
5
+ .PHONY: black
6
+ black: # Formats our code.
7
+ python -m black ./
8
+
9
+ .PHONY: test
10
+ test: # Runs tests.
11
+ python -m pytest tests
12
+
13
+