Skip to content

Commit

Permalink
cicd
Browse files Browse the repository at this point in the history
  • Loading branch information
ncfrey committed May 21, 2024
1 parent 8c40751 commit 2ddc3a6
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 5 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
shell: bash -l {0}
run: |
set -vxeuo pipefail
python -m pip install -r requirements.txt
python -m pip install -r requirements.in
python -m pip install .
python -m pip list
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/push_main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
- uses: "actions/setup-python@v5"
with:
python-version: ${{ matrix.python }}
- run: "python -m pip install --editable '.[test]'"
- run: "python -m pip install --editable ."
- run: "python -m pytest"
- env:
CODECOV_TOKEN: ${{ secrets.CODECOV_TOKEN }}
Expand Down
4 changes: 1 addition & 3 deletions pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,6 @@ readme = {file = "README.md"}

[tool.setuptools.dynamic.optional-dependencies]
dev = {file = ["requirements-dev.in"]}
local = {file = ["requirements-local.in"]}
prescient = {file = ["requirements-prescient.in"]}

[tool.setuptools.packages.find]
where = ["src"]
Expand Down Expand Up @@ -79,7 +77,7 @@ ignore = [
"E741", # ambiguous-variable-name
]
exclude = [
"scripts"
"src/lobster/model/openfold_utils"
]

[tool.ruff.per-file-ignores]
Expand Down

0 comments on commit 2ddc3a6

Please sign in to comment.