Skip to content

Commit

Permalink
Yeah
Browse files Browse the repository at this point in the history
  • Loading branch information
chrisrink10 committed Aug 11, 2022
1 parent e795ecd commit db83469
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
1 change: 0 additions & 1 deletion .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,6 @@ jobs:
if: steps.cache-deps.outputs.cache-hit != 'true'
run: curl -sSL https://install.python-poetry.org | python3 -
- name: Install Tox
if: steps.cache-deps.outputs.cache-hit != 'true'
run: |
pip install -U pip
pip install tox
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
* Fixed the `with` macro definition to match the Python language spec (#656)
* Fixed a bug where `py->lisp` did not convert map keys or values into Basilisp objects (#679)

### Other
* Run CPython CI checks on Github Actions rather than CircleCI (#683)

## [v0.1.0a1]
### Added
* Added a bootstrapping function for easily bootstrapping Basilisp projects from Python (#620)
Expand Down
6 changes: 5 additions & 1 deletion tests/basilisp/testrunner_test.py
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import platform
import sys

import pytest
Expand Down Expand Up @@ -83,7 +84,10 @@ def test_failure_repr(self, run_result: RunResult):
@pytest.mark.xfail(
(
sys.version_info < (3, 8)
or (sys.implementation == "pypy" and sys.version_info <= (3, 8))
or (
platform.python_implementation() == "PyPy"
and sys.version_info <= (3, 8)
)
),
reason=(
"This issue seems to stem from this fact that traceback line numbers for "
Expand Down

0 comments on commit db83469

Please sign in to comment.