abandoning github action build

This commit is contained in:
sneakers-the-rat 2023-09-05 22:42:46 -07:00
parent ce5cd18212
commit 456a5315d2
2 changed files with 8 additions and 8 deletions

View file

@ -23,13 +23,12 @@ jobs:
run: pip install .[tests] run: pip install .[tests]
working-directory: nwb_linkml working-directory: nwb_linkml
- uses: pavelzw/pytest-action@v2 - name: Run Tests
with: run: pytest
emoji: true working-directory: nwb_linkml
verbose: true
job-summary: true
custom-arguments: 'nwb_linkml/tests'
- run: "coveralls --service=github" - name: Report coverage
working-directory: nwb_linkml
run: "coveralls --service=github"
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

View file

@ -66,7 +66,8 @@ build-backend = "poetry.core.masonry.api"
addopts = [ addopts = [
"--cov=nwb_linkml", "--cov=nwb_linkml",
"--cov-append", "--cov-append",
"--cov-config=.coveragerc" "--cov-config=.coveragerc",
"--emoji"
] ]
testpaths = [ testpaths = [
"tests", "tests",