python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How to mention file name in nox + pytest?
My nox function looks something like this
@nox.session(python=["3.7", "3.8", "3.9"])
def test(session: nox.Session) -> None:
"""Run unit tests."...
Bhavani Ravi
Votes: 0
Answers: 1
nox does not find my pyenv versions in my Python Poetry project
I have a python project and I have tried to follow the Hypermodern Python Project guidelines for testing with Poetry and nox and pyenv.
This is on Debian 10 running on WLS2.
> lsb_release -a
Distri...

Tom Willis
Votes: 0
Answers: 1
Can not install burp certificate on nox
I am trying to install burp certificate on nox emulator. I searched a lot but I did not find solution.
first I got my ip address which is 192.168.1.4 and set burp to listen in all intertfaces.
then I ...
ELMO
Votes: 0
Answers: 1
Mypy in Nox session not finding Nump type stubs
My nox session is defined like:
@nox.session(python=["3.10", "3.9.10"])
def mypy(session: Session) -> None:
args = session.posargs or locations
install_with_constraints(...
Felix Hofstätter
Votes: 0
Answers: 1