File: pytest.ini

package info (click to toggle)
spyder 6.1.3%2Bds-4
  • links: PTS, VCS
  • area: main
  • in suites: sid
  • size: 25,744 kB
  • sloc: python: 130,956; sh: 411; xml: 149; javascript: 131; cpp: 67; makefile: 21; ansic: 19; erlang: 15; lisp: 11; java: 5
file content (38 lines) | stat: -rw-r--r-- 1,483 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
# Copyright © Spyder Project Contributors
# Licensed under the terms of the MIT License
#
# Configuration options for Pytest
#

[pytest]
filterwarnings =
    ignore:.*You passed a bytestring as `filenames`.*:DeprecationWarning
    ignore:.*zmq.eventloop.ioloop is deprecated in pyzmq 17.*:DeprecationWarning
    ignore:.*Session._session_changed is deprecated in traitlets.*:DeprecationWarning
    ignore:.*There already exists a reference.*with id.*under the context:UserWarning

markers =
    slow: Marks tests as slow
    use_introspection: Requires LSP services
    single_instance: Test Spyder in single instance mode
    auto_backend: Test the Matplotlib automatic backend
    no_stderr_file: Test the IPython console with no stderr file
    non_ascii_dir: Test the IPython console with stderr files in a non-ascii dir
    show_save_dialog
    pylab_client
    sympy_client
    cython_client
    change_directory
    use_startup_wdir: Test startup workingdir CONF
    preload_project: Preload a project on the main window
    preload_complex_project: Preload a complex project on the main window
    no_xvfb
    external_interpreter
    test_environment_interpreter
    tk_backend: Test the Tkinter Matplotlib backend
    known_leak: Known thread or open file leaks
    no_new_console: Prevent creating a new IPython console when reusing a mainwindow instance
    close_main_window: Close main window instance after test
    no_web_widgets

addopts = --ignore=./external-deps