diff options
author | Taneli Hukkinen <hukkinj1@users.noreply.github.com> | 2021-02-09 23:10:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-02-09 15:10:30 -0600 |
commit | f0b4fd40fc4431329754b3be3cec0630827df98c (patch) | |
tree | 88048b69dff067a1d860ef599c0464e355f97089 /.github | |
parent | 1282379d831ccc4306345fc7fcd09a0026694074 (diff) | |
download | immutables-f0b4fd40fc4431329754b3be3cec0630827df98c.tar.gz immutables-f0b4fd40fc4431329754b3be3cec0630827df98c.zip |
Fix flake8 errors and add it to CI (#45)
* Fix flake8 errors and add it to CI
* Use extras for test dependencies
Co-authored-by: Fantix King <fantix.king@gmail.com>
Diffstat (limited to '.github')
-rw-r--r-- | .github/workflows/tests.yml | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/.github/workflows/tests.yml b/.github/workflows/tests.yml index dcc00be..971e850 100644 --- a/.github/workflows/tests.yml +++ b/.github/workflows/tests.yml @@ -49,5 +49,6 @@ jobs: - name: Test if: steps.release.outputs.version == 0 run: | - pip install -e . + pip install -e .[test] + flake8 immutables/ tests/ python -m unittest -v tests.suite |