Projects STRLCPY maigret Commits e8d63ef2
🤬
  • Bump pytest-asyncio from 0.16.0 to 0.17.0 (#314)

    * Bump pytest-asyncio from 0.16.0 to 0.17.0
    
    Bumps [pytest-asyncio](https://github.com/pytest-dev/pytest-asyncio) from 0.16.0 to 0.17.0.
    - [Release notes](https://github.com/pytest-dev/pytest-asyncio/releases)
    - [Commits](https://github.com/pytest-dev/pytest-asyncio/compare/v0.16.0...v0.17.0)
    
    ---
    updated-dependencies:
    - dependency-name: pytest-asyncio
      dependency-type: direct:production
      update-type: version-update:semver-minor
    ...
    
    Signed-off-by: dependabot[bot] <[email protected]>
    
    * Python version specified for dependency (3.6 support was dropped)
    
    * Pytest config fixes
    
    Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
    Co-authored-by: Soxoj <[email protected]>
  • Loading...
  • dependabot[bot] committed with GitHub 3 years ago
    e8d63ef2
    1 parent 41f2ae6f
Revision indexing in progress... (symbol navigation in revisions will be accurate after indexed)
  • ■ ■ ■ ■
    pytest.ini
    skipped 2 lines
    3 3  filterwarnings =
    4 4   error
    5 5   ignore::UserWarning
    6  - 
     6 +asyncio_mode=auto
  • ■ ■ ■ ■ ■
    test-requirements.txt
    1 1  flake8==4.0.1
    2 2  pytest==6.2.5
    3  -pytest-asyncio==0.16.0
     3 +pytest-asyncio==0.16.0;python_version<"3.7"
     4 +pytest-asyncio==0.17.0;python_version>="3.7"
    4 5  pytest-cov==3.0.0
    5 6  pytest-httpserver==1.0.3
    6 7  pytest-rerunfailures==10.2
    skipped 1 lines
  • ■ ■ ■ ■
    tests/test_executors.py
    skipped 62 lines
    63 63   assert executor.execution_time < 0.5
    64 64   
    65 65   executor = AsyncioProgressbarQueueExecutor(logger=logger, in_parallel=5)
    66  - assert await executor.run(tasks) == [0, 3, 6, 1, 4, 7, 9, 2, 5, 8]
     66 + assert await executor.run(tasks) in (
     67 + [0, 3, 6, 1, 4, 7, 9, 2, 5, 8],
     68 + [0, 3, 6, 1, 4, 9, 7, 2, 5, 8],
     69 + )
    67 70   assert executor.execution_time > 0.3
    68 71   assert executor.execution_time < 0.4
    69 72   
    skipped 5 lines
Please wait...
Page is in error, reload to recover