Skip to content

Commit

Permalink
fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
eisber committed May 28, 2024
1 parent b6f2121 commit 2299e9c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 4 deletions.
12 changes: 9 additions & 3 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
with:
auto-update-conda: true
activate-environment: fabric
python-version: 3.10
python-version: "3.10"
environment-file: environment.yml
channel-priority: strict

Expand All @@ -54,10 +54,16 @@ jobs:
conda info
pip install -e .
- name: Lint with flake8
# - name: Lint with flake8
# shell: bash -el {0}
# run: |
# flake8 sempy_labs tests --count --show-source --statistics
# continue-on-error: false

- name: Lint with mypy
shell: bash -el {0}
run: |
flake8 . --count --show-source --statistics
mypy sempy_labs tests
continue-on-error: false

- name: Test with pytest
Expand Down
4 changes: 3 additions & 1 deletion environment.yml
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
name: fabric
dependencies:
- flake8
- mypy
- pytest
- pytest-cov
- pytest-mock
- pip:
- semantic-link-sempy>=0.7.5
- azure-identity==1.7.1
- azure-storage-blob>=12.9.0
- azure-storage-blob>=12.9.0
- pandas-stubs

0 comments on commit 2299e9c

Please sign in to comment.