From c09cba9872ce185f43aa113359b281613036ec2b Mon Sep 17 00:00:00 2001
From: Valentin Syrovatskiy <v.syrovatskiy@picodata.io>
Date: Wed, 22 Jun 2022 15:14:27 +0300
Subject: [PATCH] chore: developer's tools and commands

---
 .tool-versions |  1 +
 Makefile       | 15 ++++++++++++++-
 Pipfile        |  5 +++++
 3 files changed, 20 insertions(+), 1 deletion(-)
 create mode 100644 .tool-versions

diff --git a/.tool-versions b/.tool-versions
new file mode 100644
index 0000000000..85cfd4bbfd
--- /dev/null
+++ b/.tool-versions
@@ -0,0 +1 @@
+python 3.10.5
diff --git a/Makefile b/Makefile
index f9b1e4d4e9..d3e514e408 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,11 @@
-.PHONY: default lint test
+.PHONY: default fmt lint test check fat
 
 default: ;
 
+fmt:
+	cargo fmt
+	pipenv run fmt
+
 lint:
 	cargo fmt --check
 	cargo check
@@ -11,3 +15,12 @@ lint:
 test:
 	cargo test
 	pipenv run pytest
+
+check:
+	@$(MAKE) lint --no-print-directory
+	@$(MAKE) test --no-print-directory
+
+fat:
+	@$(MAKE) fmt --no-print-directory
+	@$(MAKE) lint --no-print-directory
+	@$(MAKE) test --no-print-directory
diff --git a/Pipfile b/Pipfile
index b9ebae4c90..e4c6e66f4b 100644
--- a/Pipfile
+++ b/Pipfile
@@ -17,6 +17,11 @@ pytest-clarity = "*"
 python_version = "3.10"
 
 [scripts]
+fmt = """bash -c "
+set -e -x
+pipenv run black ./test
+"
+"""
 lint = """bash -c "
 set -e -x
 pipenv run flake8 ./test
-- 
GitLab