Skip to content

Commit

Permalink
tests speed up
Browse files Browse the repository at this point in the history
  • Loading branch information
Olivier DEBAUCHE committed Jul 26, 2024
1 parent 53e390d commit d841fc1
Show file tree
Hide file tree
Showing 2 changed files with 83 additions and 13 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -46,20 +46,9 @@ jobs:
python -m pip install uv
python -m uv pip install coverage
python -m uv pip install -r tests.txt
- name: Coverage FL_Client
run: |
- name: Coverage Erase
run: |
coverage erase
coverage run manage.py test --parallel auto fl_client.tests.tests_urls
coverage combine -a
coverage run manage.py test --parallel auto fl_client.tests.tests_views
coverage combine -a
- name: Coverage FL_Server
run: |
coverage run manage.py test --parallel auto fl_server.tests.tests_urls
coverage combine -a
coverage run manage.py test --parallel auto fl_server.tests.tests_views
coverage combine -a
# coverage run -a manage.py test --parallel auto fl_server.tests.tests_server
- name: Coverage A
run: |
coverage run manage.py test --parallel auto fl_common.tests.tests_models_alexnet
Expand Down
81 changes: 81 additions & 0 deletions .github/workflows/nightlies_common.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,81 @@
name: Nighlies Common
on:
schedule:
- cron: "0 00 * * *" # 12am UTC, 5:30pm Indian, 9pm Brazil, 11am AEDT
workflow_dispatch:
inputs:
none:
description: "Nighlies Common"
required: false

concurrency:
group: nightlies-common-${{ github.event_name == 'pull_request' && format('{0}-{1}', github.workflow, github.event.pull_request.number) || github.workflow_ref }}
cancel-in-progress: true

jobs:
sonarcloud:
name: Coverage
runs-on: ubuntu-latest
steps:
- name: Free Disk Space (Ubuntu)
uses: jlumbroso/free-disk-space@main
with:
# this might remove tools that are actually needed,
# if set to "true" but frees about 6 GB
tool-cache: false

# all of these default to true, but feel free to set to
# "false" if necessary for your workflow
android: true
dotnet: true
haskell: true
large-packages: true
docker-images: false
swap-storage: true
- uses: actions/checkout@v4
with:
fetch-depth: 0 # Shallow clones should be disabled for a better relevancy of analysis
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v5
with:
python-version: 3.12
cache: 'pip'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install uv
python -m uv pip install coverage
python -m uv pip install -r tests.txt
- name: Coverage Erase
run: |
coverage erase
- name: Coverage FL_Client
run: |
coverage run manage.py test --parallel auto fl_client.tests.tests_urls
coverage combine -a
coverage run manage.py test --parallel auto fl_client.tests.tests_views
coverage combine -a
- name: Coverage FL_Server
run: |
coverage run manage.py test --parallel auto fl_server.tests.tests_urls
coverage combine -a
coverage run manage.py test --parallel auto fl_server.tests.tests_views
coverage combine -a
# coverage run -a manage.py test --parallel auto fl_server.tests.tests_server
- name: Coverage Report
run: |
coverage xml -o coverage.xml
coverage report
- name: SonarCloud Scan
uses: SonarSource/sonarcloud-github-action@master
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # Needed to get PR information, if any
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
- name: Run codacy-coverage-reporter
uses: codacy/[email protected]
with:
project-token: ${{ secrets.CODACY_PROJECT_TOKEN }}
coverage-reports: 'coverage.xml'
env:
CODACY_PROJECT_TOKEN: ${{ secrets.CODACY_PROJECT_TOKEN }}

0 comments on commit d841fc1

Please sign in to comment.