This repository was archived by the owner on Aug 5, 2023. It is now read-only.
File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323 - name : Install dependencies
2424 run : |
2525 python -m pip install --upgrade pip
26- pip install flake8 pytest
26+ pip install flake8
2727 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
28+ if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
2829 - name : Lint with flake8
2930 run : |
3031 # stop the build if there are Python syntax errors or undefined names
3637 # Region must be defined for the boto3 kms client
3738 AWS_DEFAULT_REGION : ' us-east-2'
3839 run : |
39- if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
4040 pytest
Original file line number Diff line number Diff line change 2121 - name : Install dependencies
2222 run : |
2323 python -m pip install --upgrade pip
24- pip install flake8 pytest setuptools wheel twine
24+ pip install flake8 setuptools wheel twine
2525 if [ -f requirements.txt ]; then pip install -r requirements.txt; fi
26+ if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
2627 - name : Lint with flake8
2728 run : |
2829 # stop the build if there are Python syntax errors or undefined names
3435 # Region must be defined for the boto3 kms client
3536 AWS_DEFAULT_REGION : ' us-east-2'
3637 run : |
37- if [ -f requirements-test.txt ]; then pip install -r requirements-test.txt; fi
3838 pytest
3939 - name : Build and publish
4040 env :
You can’t perform that action at this time.
0 commit comments