Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Run unittests as part of CircleCI (wip) #1135

Closed
wants to merge 1 commit into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
6 changes: 6 additions & 0 deletions .circleci/config.yml
Expand Up @@ -55,6 +55,12 @@ shared: &shared
python build.py install
python -c "import wx; print(wx.version())"

- run:
name: run unittests
command: |
source venv/bin/activate
python build.py test --pytest_timeout=60 --extra_pytest="-k 'not (display_Tests or glcanvas_Tests or mousemanager_Tests or numdlg_Tests or uiaction_MouseTests or uiaction_KeyboardTests or unichar_Tests or valtext_Tests or test_frameRestore or test_grid_pi)'" --verbose || true


# We use one job for each version of Python that we want to build with. Each
# one gets its own copy of the shared config above.
Expand Down