Skip to content

Commit

Permalink
Merge pull request #135 from pauldmccarthy/mnt/no-cov
Browse files Browse the repository at this point in the history
Fix error in pytest call
  • Loading branch information
pauldmccarthy authored Jul 25, 2023
2 parents 676b3db + 3df2a6a commit 43b53cd
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .ci/build_wheels.sh
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export CIBW_TEST_SKIP="*i686* *aarch64*"
# interpret a conftest.py file correctly.
echo '#!/usr/bin/env bash' > testcmd
echo 'cp $1/pyproject.toml .' >> testcmd
echo 'python -m indexed_gzip.tests -c pyproject.toml -m --no-cov "not slow_test"' >> testcmd
echo 'python -m indexed_gzip.tests -c pyproject.toml --no-cov -m "not slow_test"' >> testcmd
chmod a+x testcmd

export CIBW_TEST_COMMAND="bash {project}/testcmd {project}"
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,13 @@
# `indexed_gzip` changelog


## 1.8.3 (July 25th 2023)


* Another adjustment to package build process (#135).



## 1.8.2 (July 25th 2023)


Expand Down
2 changes: 1 addition & 1 deletion indexed_gzip/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,4 +19,4 @@
"""


__version__ = '1.8.2'
__version__ = '1.8.3'

0 comments on commit 43b53cd

Please sign in to comment.