Skip to content

Commit

Permalink
fork differenly
Browse files Browse the repository at this point in the history
  • Loading branch information
Volodymyr Savchenko authored and Volodymyr Savchenko committed May 23, 2024
1 parent 1aff361 commit 95172d7
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/aggregate.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
run: |
python -m pip install --upgrade pip
pip install poetry
poetry install --all-extras -vv
poetry install
- name: Aggregate the data
run: |
poetry run workflowhub-graph-source-crates
Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/lint-and-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -19,15 +19,12 @@ jobs:
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry pylint mypy
pip install poetry
poetry install --all-extras -vv
- name: Analysing the code with pylint
run: |
poetry install --all-extras -vv
python -m pytest --version
pylint --errors-only $(git ls-files '*.py')
poetry run pylint --errors-only $(git ls-files '*.py')
- name: Testing the code with pytest
run: |
poetry install --all-extras -vv
poetry run py.test tests
2 changes: 2 additions & 0 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ arcp = "^0.2.1"
rdflib = "^6.3.2"
requests = "^2.32.2"
certifi = "^2024.2.2"
pytest = ">=8.2.1"

[tool.poetry.scripts]
workflowhub-graph-source-crates = "workflowhub_graph.source_crates:main"
Expand All @@ -23,6 +24,7 @@ workflowhub-graph-merge = "workflowhub_graph.merge:main"

[tool.poetry.group.dev.dependencies]
pytest = ">=8.2.1"
pylint = "^3.2.2"

[build-system]
requires = ["poetry-core"]
Expand Down

0 comments on commit 95172d7

Please sign in to comment.