fix: time conversion for efficiency reports with jobs taking longer than 1 day #874
Workflow file for this run
  
    
      This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
      Learn more about bidirectional Unicode characters
    
  
  
    
  | name: CI | |
| on: | |
| push: | |
| branches: | |
| - main | |
| pull_request: | |
| jobs: | |
| formatting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install poetry | |
| run: pip install poetry | |
| - name: Determine dependencies | |
| run: poetry lock | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: poetry | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| - name: Check formatting | |
| run: poetry run black --check . | |
| linting: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out the code | |
| uses: actions/checkout@v4 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install poetry | |
| run: pip install poetry | |
| - name: Determine dependencies | |
| run: poetry lock | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: poetry | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| - name: Check code | |
| run: poetry run flake8 | |
| testing: | |
| runs-on: ubuntu-latest | |
| services: | |
| mysql: | |
| image: mysql:8.0 | |
| env: | |
| MYSQL_ROOT_PASSWORD: root | |
| ports: | |
| - "8888:3306" | |
| options: --health-cmd="mysqladmin ping" --health-interval=10s --health-timeout=5s --health-retries=3 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: koesterlab/setup-slurm-action@v1 | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| - name: Install poetry | |
| run: pip install poetry | |
| - name: Determine dependencies | |
| run: poetry lock | |
| - uses: actions/setup-python@v5 | |
| with: | |
| python-version: "3.11" | |
| cache: poetry | |
| - name: Install dependencies | |
| run: | | |
| poetry install | |
| - name: Run pytest | |
| run: poetry run coverage run -m pytest tests/tests.py -sv --tb=short --disable-warnings | |
| - name: Run Coverage | |
| run: poetry run coverage report -m |