summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAshley Sommer <Ashley.Sommer@csiro.au>2021-07-08 12:50:41 +1000
committerAshley Sommer <Ashley.Sommer@csiro.au>2021-07-08 13:19:04 +1000
commitc9279bdb183a806b081647a693deae102190ddb5 (patch)
treee771653d12690975da8ac6d622329cc6e91b4d3b /Makefile
parenta21d458e78837fee7a27b103d2f107ddbcc2c52e (diff)
downloadrdflib-c9279bdb183a806b081647a693deae102190ddb5.tar.gz
Initial python 3.7 requirement update, add new Drone tests, add black.toml file, add .editorconfig file
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7c484cfc..171f76cf 100644
--- a/Makefile
+++ b/Makefile
@@ -7,4 +7,10 @@ build:
coverage:
docker-compose -f docker-compose.tests.yml up test-runner-coverage
- docker-compose -f docker-compose.tests.yml down \ No newline at end of file
+ docker-compose -f docker-compose.tests.yml down
+
+reformat:
+ black --config ./black.toml .
+
+check-format:
+ black --config ./black.toml --check .