Reduce difference between local and CI environments (#1518)

* Clean up pyproject file

This reduces the differences between local tasks and tasks run in the CI
pipelines

* remove linting step (it's part of test now)

* remove useless arg
This commit is contained in:
Jonathan Wren 2022-06-25 12:45:39 -07:00 committed by GitHub
parent 856f361271
commit 23bc0f2c8f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 37 additions and 55 deletions

View file

@ -39,12 +39,7 @@ runs:
echo 'DEPS_INSTALLED=true' >> $GITHUB_ENV
shell: bash
- name: Linting
- name: Linting & Testing
if: ${{ env.DEPS_INSTALLED == 'true' }}
run: poetry run poe ci-lint
shell: bash
- name: Testing
if: ${{ env.DEPS_INSTALLED == 'true' }}
run: poetry run poe ci-test
run: poetry run poe test
shell: bash