Skip to content

Commit

Permalink
Merge pull request #182 from fast-aircraft-design/fix-xdsm
Browse files Browse the repository at this point in the history
updated for wop 1.9
  • Loading branch information
christophe-david committed Jun 9, 2020
2 parents df3db3f + 4462da3 commit 014a6ab
Show file tree
Hide file tree
Showing 6 changed files with 234 additions and 220 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,22 +64,22 @@ jobs:
- name: Unit tests
run: |
poetry run pytest src
poetry run coverage xml # for Codacy coverage
poetry run coverage xml # for sending coverage report
shell: bash

- name: Run codacy-coverage-reporter
uses: codacy/codacy-coverage-reporter-action@master
if: runner.os == 'Linux' && matrix.python-version == '3.7'
if: runner.os == 'Linux' && matrix.python-version == '3.7' # This action runs only on Linux
with:
project-token: ${{ secrets.codacy }}
coverage-reports: coverage.xml

- uses: codecov/codecov-action@v1
if: runner.os == 'Windows' && matrix.python-version == '3.7'
if: runner.os == 'Windows' && matrix.python-version == '3.7' # Using Windows for covering XFOIL calls
with:
flags: unittests # optional
name: codecov-FAST-OAD # optional
fail_ci_if_error: true # optional (default = false)
# flags: unittests # optional
name: codecov-FAST-OAD # optional
fail_ci_if_error: false # optional (default = false)

- name: Integration tests
run: poetry run pytest --no-cov tests/integration_tests
Expand Down

0 comments on commit 014a6ab

Please sign in to comment.