From 2d25dfcdf2811d1671e66d57bfc94fb5da2f8f9b Mon Sep 17 00:00:00 2001 From: Martin Diehl Date: Sun, 31 Oct 2021 22:43:06 +0100 Subject: [PATCH] automated type checking --- .gitlab-ci.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 8680b2873..1fd5a6555 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -81,7 +81,7 @@ checkout: - release ################################################################################################### -processing: +pytest: stage: python script: - cd $DAMASKROOT/python @@ -91,6 +91,16 @@ processing: - master - release +mypy: + stage: python + script: + - cd $DAMASKROOT/python + - mypy damask/mechanics.py + except: + - master + - release + + ################################################################################################### compile_grid_Intel: