Skip to content

Commit

Permalink
Don't run integration tests with 3.10
Browse files Browse the repository at this point in the history
  • Loading branch information
julianneswinoga committed Nov 20, 2022
1 parent eb06177 commit 0285d1a
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,18 @@ jobs:
- run:
name: Poetry show version
command: poetry --version
- when:
# 3.10 has a problem with numpy 1.19.5, from JSBSim
# This hack can be removed when 3.6 support is dropped
condition:
equal: [ "3.10", << parameters.python-version >> ]
steps:
- run:
name: Remove JSBSim
command: poetry remove JSBSim
- run:
name: Delete JSBSim tests
command: rm --verbose tests/test_*JSBSim*.py
- run:
name: Poetry build
command: poetry build --no-ansi --no-interaction
Expand Down

0 comments on commit 0285d1a

Please sign in to comment.