Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 10 of 103 for Coverage (0.06 sec)

  1. scripts/coverage.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    coverage combine
    coverage report
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Oct 08 09:03:21 UTC 2025
    - 83 bytes
    - Viewed (0)
  2. .gitignore

    .idea
    .ipynb_checkpoints
    .mypy_cache
    .vscode
    __pycache__
    .pytest_cache
    htmlcov
    dist
    site
    .coverage*
    coverage.xml
    .netlify
    test.db
    log.txt
    Pipfile.lock
    env3.*
    env
    docs_build
    site_build
    venv
    docs.zip
    archive.zip
    
    # vim temporary files
    *~
    .*.sw?
    .cache
    
    # macOS
    .DS_Store
    
    # Ignore while the setup still depends on requirements.txt files
    uv.lock
    
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Thu Dec 18 13:24:09 UTC 2025
    - 354 bytes
    - Viewed (0)
  3. .github/workflows/smokeshow.yml

          - uses: actions/download-artifact@v6
            with:
              name: coverage-html
              path: htmlcov
              github-token: ${{ secrets.GITHUB_TOKEN }}
              run-id: ${{ github.event.workflow_run.id }}
          # Try 5 times to upload coverage to smokeshow
          - name: Upload coverage to Smokeshow
            run: |
              for i in 1 2 3 4 5; do
                if smokeshow upload htmlcov; then
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Tue Dec 16 17:36:42 UTC 2025
    - 1.6K bytes
    - Viewed (0)
  4. .github/workflows/test.yml

                python-version: "3.9"
                coverage: coverage
              - os: macos-latest
                python-version: "3.10"
                coverage: coverage
              - os: windows-latest
                python-version: "3.12"
                coverage: coverage
              - os: ubuntu-latest
                python-version: "3.13"
                coverage: coverage
                # Ubuntu with 3.13 needs coverage for CodSpeed benchmarks
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 08:53:59 UTC 2025
    - 4.4K bytes
    - Viewed (0)
  5. scripts/test.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    export PYTHONPATH=./docs_src
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sun Jun 11 21:38:15 UTC 2023
    - 99 bytes
    - Viewed (0)
  6. CLAUDE.md

    - **Package Structure**: `org.codelibs.curl.*`
    - **Build Tool**: Maven 3.x
    - **Test Coverage**: JaCoCo plugin enabled
    
    ## Code Style
    
    - Uses external Eclipse formatter configuration from CodeLibs
    - Apache License 2.0 headers on all source files (updated to 2025)
    - Comprehensive Javadoc documentation required
    - Code coverage reporting with JaCoCo
    
    ## Test Coverage
    
    The project includes comprehensive unit tests for all core components:
    Registered: Sat Dec 20 09:13:53 UTC 2025
    - Last Modified: Mon Nov 24 03:10:07 UTC 2025
    - 3.2K bytes
    - Viewed (0)
  7. tests/test_compat.py

        # For coverage
        # TODO: in theory this would allow declaring types that could be lists of bytes
        # to be read from files and other types, but I'm not even sure it's a good idea
        # to support it as a first class "feature"
        assert is_bytes_sequence_annotation(Union[list[str], list[bytes]])
    
    
    def test_is_uploadfile_sequence_annotation():
        # For coverage
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Sat Dec 27 12:54:56 UTC 2025
    - 4.2K bytes
    - Viewed (0)
  8. requirements-tests.txt

    -e .[all]
    -r requirements-docs-tests.txt
    pytest >=7.1.3,<9.0.0
    coverage[toml] >= 6.5.0,< 8.0
    mypy ==1.14.1
    dirty-equals ==0.9.0
    sqlmodel==0.0.27
    flask >=1.1.2,<4.0.0
    strawberry-graphql >=0.200.0,< 1.0.0
    anyio[trio] >=3.2.1,<5.0.0
    PyJWT==2.9.0
    pyyaml >=5.3.1,<7.0.0
    pwdlib[argon2] >=0.2.1
    inline-snapshot>=0.21.1
    pytest-codspeed==4.2.0
    # types
    types-ujson ==5.10.0.20240515
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Fri Dec 26 10:43:02 UTC 2025
    - 394 bytes
    - Viewed (0)
  9. scripts/test-cov-html.sh

    #!/usr/bin/env bash
    
    set -e
    set -x
    
    bash scripts/test.sh ${@}
    Registered: Sun Dec 28 07:19:09 UTC 2025
    - Last Modified: Wed Oct 08 09:03:21 UTC 2025
    - 87 bytes
    - Viewed (0)
  10. fess-crawler/src/test/java/org/codelibs/fess/crawler/extractor/impl/EXTRACTOR_TESTS_README.md

    - ✅ Empty and whitespace-only content
    
    ---
    
    ## Test Coverage Summary
    
    ### Total Tests: 53 tests
    
    ### Coverage by Component:
    1. **Resource Management**: 8 tests
    2. **Input Validation**: 11 tests
    3. **Error Handling**: 12 tests
    4. **Edge Cases**: 10 tests
    5. **Encoding Support**: 12 tests
    
    ### Coverage by Extractor:
    - AbstractExtractor: 11 tests
    - MsWordExtractor: 3 tests
    Registered: Sat Dec 20 11:21:39 UTC 2025
    - Last Modified: Wed Nov 19 08:55:01 UTC 2025
    - 5.7K bytes
    - Viewed (0)
Back to top