Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2011-07-18 13:49:26 +0400
committerCampbell Barton <ideasman42@gmail.com>2011-07-18 13:49:26 +0400
commit35ce13562db2eb2dedef76ffdf77b83e48fb684a (patch)
treef3b520421b9fab4085f112414b290e3cb388ea04 /GNUmakefile
parent9fa20e6d88be6d44152b9e856a83c850e5db2928 (diff)
script to report deprecated functions of text and their age in days.
Diffstat (limited to 'GNUmakefile')
-rw-r--r--GNUmakefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/GNUmakefile b/GNUmakefile
index b55890f9271..d1a60ce5e37 100644
--- a/GNUmakefile
+++ b/GNUmakefile
@@ -99,14 +99,18 @@ test:
# run pep8 check check on scripts we distribute.
test_pep8:
- python source/tests/pep8.py > test_pep8.log 2>&1
+ python3 source/tests/pep8.py > test_pep8.log 2>&1
@echo "written: test_pep8.log"
# run some checks on our cmakefiles.
test_cmake:
- python build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
+ python3 build_files/cmake/cmake_consistency_check.py > test_cmake_consistency.log 2>&1
@echo "written: test_cmake_consistency.log"
+# run deprecation tests, see if we have anything to remove.
+test_deprecated:
+ python3 source/tests/check_deprecated.py
+
clean:
make -C $(BUILD_DIR) clean