Skip to content

Commit

Permalink
Merge pull request #17 from esc/gha/flake8
Browse files Browse the repository at this point in the history
add the flake8 test
  • Loading branch information
stuartarchibald authored Jul 3, 2024
2 parents c09916e + 0e3e839 commit 5abb115
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 4 deletions.
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,11 +32,15 @@ jobs:
- name: Install dependencies
shell: bash -l {0}
run: |
conda install python=3.12 pytest coverage numpy numba conda-build clangxx=14 numba/label/dev::llvmlite setuptools_scm cython pytest-cov pyyaml
conda install python=3.12 pytest coverage numpy numba flake8 conda-build clangxx=14 numba/label/dev::llvmlite setuptools_scm cython pytest-cov pyyaml
- name : Display packages and system info
shell: bash -l {0}
run: |
python -m numba -s
- name: Lint the package with flake8
shell: bash -l {0}
run: |
flake8
- name: Install numba-pixie with pip
shell: bash -l {0}
run: |
Expand Down
5 changes: 2 additions & 3 deletions docs/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
import os

sys.path.insert(0, os.path.abspath(os.path.join("..", "..")))
from pixie import __version__
from pixie import __version__ # noqa: E402

project = 'pixie'
copyright = '2024, Numba Developers'
Expand All @@ -34,5 +34,4 @@
# https://www.sphinx-doc.org/en/master/usage/configuration.html#options-for-html-output

html_theme = 'sphinx_rtd_theme'
#html_static_path = ['_static']

# html_static_path = ['_static']

0 comments on commit 5abb115

Please sign in to comment.