You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
dist: xenial # required for Python 3.7 (travis-ci/travis-ci#9069)
8
14
sudo: required # required for Python 3.7 (travis-ci/travis-ci#9069)
9
15
install:
10
-
- python scripts/ci/sdk_install
11
-
- pip install flake8
12
-
- if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then pip install mypy; fi
13
-
before_script: flake8 .
14
-
script:
15
-
- python scripts/ci/run_tests
16
-
- if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then mypy --ignore-missing-imports --no-strict-optional ask-sdk/ask_sdk; fi
17
-
- if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then mypy --ignore-missing-imports --no-strict-optional ask-sdk-core/ask_sdk_core; fi
18
-
- if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then mypy --ignore-missing-imports --no-strict-optional ask-sdk-runtime/ask_sdk_runtime; fi
19
-
- if [[ $TRAVIS_PYTHON_VERSION != '2.7' ]]; then mypy --ignore-missing-imports --no-strict-optional ask-sdk-dynamodb-persistence-adapter/ask_sdk_dynamodb; fi
0 commit comments