Benedek Racz

Results 31 issues of Benedek Racz

I have created an installable python package. 1. Clone the repo and enter into the folder 2. Run `pip install .` to intall bscan_tools (create virtualenv to keep clean your...

**Issue** Cannot install package with setuptools 50 or above with pbr in virtualenv. Venv is OK. **Environment** Provide at least: - OS: WSL-I Linux LAPTOP-9OMIOB2A 4.4.0-19041-Microsoft #488-Microsoft Mon Sep 01...

needs-more-info

Here is the output of codecov, where there are some unwanted characters like `==>` ``` D:\foo>codecov _____ _ / ____| | | | | ___ __| | ___ ___ _____...

Solving #226 . Now Windows can use colored console prints.

I get the following error during running the example code from the [README](https://github.com/ahkab/ahkab/blob/master/README.md) ``` Traceback (most recent call last): File "", line 1, in ImportError: No module named matplotlib.pyplot ```

I get this error during run the "hello world" example: ``` from ahkab import new_ac, run from ahkab.circuit import Circuit from ahkab.plotting import plot_results # calls matplotlib for you import...

**Describe the bug** Wexpect cannot run inside [venv](https://docs.python.org/3/library/venv.html). (Note wexpect works inside [virtualenv](https://pypi.org/project/virtualenv/)) **To Reproduce** Create...: `python -m venv myvenv` ...and activate venv `myvenv\Scripts\activate` Install wexpect: `python -m pip install...

bug

**Describe the bug** Sometimes the before string is confused. Some characters missing. **To Reproduce** ```python import wexpect import time print(wexpect.__version__) def testPath(): # Path of cmd executable: cmdPath = 'cmd'...

bug
help wanted

**Describe the bug** Sometimes `tests.test_expect.ExpectTestCase.test_expect_order_exact` test fails using `legacy_wexpect` (I have seen with new structure too, but rarely) See build [1.0.201](https://ci.appveyor.com/project/raczben/wexpect/builds/30990315) and [1.0.203](https://ci.appveyor.com/project/raczben/wexpect/builds/30995235), which builds the same commit, however, the...

bug

**Describe the bug** Wexpect cannot be used in project which uses pytest **To Reproduce** ```python import wexpect def test_wexpect(): executable = 'tclsh' prompt = '% ' child_proc = wexpect.spawn(executable) child_proc.expect(prompt,...