Skip to content

Commit

Permalink
Merge pull request #519 from livaage/timing_studies
Browse files Browse the repository at this point in the history
Accelerating and testing point cloud building
  • Loading branch information
livaage authored Aug 27, 2024
2 parents c49e637 + 12ac698 commit 06d9a41
Show file tree
Hide file tree
Showing 8 changed files with 371 additions and 99 deletions.
5 changes: 1 addition & 4 deletions .github/workflows/test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,4 @@ jobs:
- name: Test with pytest
run: |
pytest
- name: Explicitly convert coverage to xml
run: coverage xml
- name: Upload coverage report
uses: codecov/[email protected]
2 changes: 1 addition & 1 deletion environments/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ dependencies:
- pytorch-cluster
- optuna
- wandb
- numpy
- numpy < 2
- pandas
- scikit-learn
- pip
Expand Down
2 changes: 1 addition & 1 deletion environments/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- pytorch >= 2
- optuna
- wandb
- numpy
- numpy < 2
- pandas
- scikit-learn
- pip
Expand Down
2 changes: 1 addition & 1 deletion environments/minimal.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ dependencies:
- pytorch >= 2
- pyg >= 2.3.0
- optuna
- numpy
- numpy < 2
- pandas
- scikit-learn
- pip
Expand Down
10 changes: 5 additions & 5 deletions pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.pytest.ini_options]
minversion = "6.0"
addopts = ["--cov=gnn_tracking", "-ra", "--strict-markers", "--strict-config"]
addopts = ["-ra", "--strict-markers", "--strict-config"]
testpaths = [
"tests"
]
Expand All @@ -14,7 +14,7 @@ all = true


[tool.ruff]
select = [
lint.select = [
"E", "F", "W", # flake8
"B", "B904", # flake8-bugbear
"I", # isort
Expand All @@ -39,7 +39,7 @@ select = [
"NPY", # NumPy specific rules
"PD", # pandas-vet
]
extend-ignore = [
lint.extend-ignore = [
"PLR", # Design related pylint codes
"E501", # Line too long
"PT004", # Use underscore for non-returning fixture (use usefixture instead)
Expand All @@ -50,9 +50,9 @@ extend-ignore = [
]
target-version = "py37"
src = ["src"]
unfixable = [
lint.unfixable = [
"T20", # Removes print statements
"F841", # Removes unused variables
]
exclude = []
flake8-unused-arguments.ignore-variadic-names = true
lint.flake8-unused-arguments.ignore-variadic-names = true
Loading

0 comments on commit 06d9a41

Please sign in to comment.