mirror of
https://github.com/xonsh/xonsh.git
synced 2025-03-04 16:34:47 +01:00

* refectored builtins * refectored posix and readers * refectored posix and readers * proxies * pipelines * basic procs import cleanup * fixed / refactored tests * procs docs * amalgamate * XONSH_DEBUG=1 in tests * exclude xonsh.procs mypy * Use `pip install` instead of `python setup.py install` * Update docs/api/procs/pipelines.rst Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com> Co-authored-by: Gil Forsyth <gil@forsyth.dev> Co-authored-by: Gil Forsyth <gforsyth@users.noreply.github.com>
8 lines
151 B
Python
8 lines
151 B
Python
import platform
|
|
|
|
import pytest
|
|
|
|
|
|
ON_WINDOWS = platform.system() == "Windows"
|
|
|
|
skip_if_on_windows = pytest.mark.skipif(ON_WINDOWS, reason="Unix stuff")
|