diff options
| author | Charles Cabergs <me@cacharle.xyz> | 2021-01-31 03:36:45 +0100 |
|---|---|---|
| committer | Charles Cabergs <me@cacharle.xyz> | 2021-01-31 03:36:45 +0100 |
| commit | aa962c545496fc645d3f78370d7190ae1f3db11e (patch) | |
| tree | cadd291fcf24ec6fe222e2ce204135ce3ea88828 /.travis.yml | |
| parent | 4a4f6b5b01bd6d23c141d51dd9399c36d12d29d9 (diff) | |
| download | minishell_test-aa962c545496fc645d3f78370d7190ae1f3db11e.tar.gz minishell_test-aa962c545496fc645d3f78370d7190ae1f3db11e.tar.bz2 minishell_test-aa962c545496fc645d3f78370d7190ae1f3db11e.zip | |
Fixing type annotation for python3.6 compatibility
Diffstat (limited to '.travis.yml')
| -rw-r--r-- | .travis.yml | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/.travis.yml b/.travis.yml index 83ec84c..d547937 100644 --- a/.travis.yml +++ b/.travis.yml @@ -1,6 +1,5 @@ language: python python: - - "3.5" - "3.6" - "3.7" - "3.8" @@ -8,7 +7,10 @@ python: install: - pip install -r requirements.txt + # - git clone https://ouaisbrefbams/minishell ../minishell script: - - python -m mypy src - python -m flake8 + - python -m mypy src + # - ./run + # - ./run -k echo |
