Coder Social home page Coder Social logo

Comments (3)

darrenburns avatar darrenburns commented on June 20, 2024

This is a bit of a tricky area. At the point where the fixture executes, hasn't sys.stdout already been replaced with something else by Ward? If you print it out you might see that it has.

An idea that might work is this:

Inside your fixture, you could re-assign sys.stdout to some proxy file-like object which captures the output and then forwards it on to whatever was in sys.stdout before. Something like sys.stdout = CapturingProxy(sys.stdout).

CapturingProxy would be a file-like object implementing read/write etc, and storing everything that it proxies through to the original stdout. Then, you'd return the content that the CapturingProxy holds.

The scope of the fixture would probably need to be Test as well for this to work, so that each test only records what was written during its own execution.

from ward.

mgzenitech avatar mgzenitech commented on June 20, 2024

Hm... Tried https://pypi.org/project/capturer/ but got an error with UnsupportedOperation: fileno as Ward mutates some low level things I think.

Update, probably due to this:
Screenshot from 2022-10-24 18-18-40

Same issue as reported here: #339

from ward.

AndydeCleyre avatar AndydeCleyre commented on June 20, 2024

FWIW here's a hacky setup I'm using. Instead of calling the functions directly in the tests, I wrap them with a utility function that temporarily sets stdout to a StringIO, and returns the output as str.

from ward.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.