Skip to content

Commit

Permalink
Merge pull request #8 from gleb-sevruk/file_removal_async_fix
Browse files Browse the repository at this point in the history
fixed an issue when file deletion caused non-awaited coroutine exception
  • Loading branch information
gleb-britecore authored Oct 31, 2019
2 parents 323fe98 + bef006d commit 48995f8
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion pycrunch/pipeline/file_removed_task.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@ async def run(self):

test_map.file_did_removed(self.file)
from pycrunch.discovery.simple import TestSet
state.engine.test_discovery_will_become_available(TestSet())
await state.engine.test_discovery_will_become_available(TestSet())
4 changes: 2 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,14 +2,14 @@
from distutils.core import setup

setup(name='pycrunch-engine',
version='0.7.1',
version='0.7.2',
description='Automatic Test Runner Engine',
url='http://github.com/gleb-sevruk/pycrunch-engine',
author='Gleb Sevruk',
author_email='support@pycrunch.com',
license='libpng',
packages=setuptools.find_packages(),
download_url='https://github.com/gleb-sevruk/pycrunch-engine/archive/v0.7.1.tar.gz',
download_url='https://github.com/gleb-sevruk/pycrunch-engine/archive/v0.7.2.tar.gz',
setup_requires=['wheel'],
entry_points={
'console_scripts': ['pycrunch-engine=pycrunch.main:run'],
Expand Down

0 comments on commit 48995f8

Please sign in to comment.