Skip to content

Commit

Permalink
fix codecoverage
Browse files Browse the repository at this point in the history
  • Loading branch information
RexWzh committed Jun 25, 2024
1 parent 12baae5 commit c3f35aa
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
pip install coverage
coverage run -m pytest tests/
- name: Upload coverage to Codecov
uses: codecov/codecov-action@v1
uses: codecov/codecov-action@v4
with:
token: ${{ secrets.CODECOV_TOKEN }}
flags: unittests
Expand Down
4 changes: 2 additions & 2 deletions askchat/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

__author__ = """Rex Wang"""
__email__ = '[email protected]'
__version__ = '1.2.0'
__version__ = '1.2.1'

import asyncio
from pathlib import Path
Expand All @@ -16,7 +16,7 @@
MAIN_ENV_PATH = Path.home() / '.askchat' / '.env'
ENV_PATH = Path.home() / '.askchat' / 'envs'

raw_env_text = f""""# Description: Env file for askchat.
raw_env_text = f"""# Description: Env file for askchat.
# Current version: {__version__}
# The base url of the API (with suffix /v1)
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

from setuptools import setup, find_packages

VERSION = '1.2.0'
VERSION = '1.2.1'

with open('README.md') as readme_file:
readme = readme_file.read()
Expand Down

0 comments on commit c3f35aa

Please sign in to comment.