27 questions
- Bountied 0
- Unanswered
- Frequent
- Score
- Trending
- Week
- Month
- Unanswered (my tags)
0
votes
0
answers
25
views
Nox Android 7 (32-bit) Settings Reversion Issue on Prevps DE7 Machine
We are encountering an issue with our prevps DE7 machine.
The steps are as follows:
We create a Nox instance on the DE7 machine.
Configure settings such as enabling developer options.
Wait for the ...
0
votes
1
answer
223
views
"Fixture 'session' not found" error when running a Nox tests method
I am new to python and I need to implement a noxfile on a test project. I installed nox==2024年4月15日 and I added a noxfile.py in my project root folder with a plain method to run, based on their ...
0
votes
0
answers
141
views
nox unexpected behaviour when switching between python 3.6 and 3.12
I built a Pyenv image using a Dockerfile that contains the following lines (showing only relevant lines):
...
# Install Python versions
RUN pyenv install 3.6
RUN pyenv install 3.12
RUN pyenv global 3....
0
votes
0
answers
315
views
nox not able to to find python 3.7 interpreter
I am trying to contribute to open source repo. And I realize that my test is failing on python 3.7 interpreter, it passing in 3.8, 3.9 and 3.10. I am trying to run this locally so I could fix it.
...
3
votes
1
answer
1k
views
Python generic type annotation for pandas series
I am encountering a type checking error when running my code through typeguard.
I the following file in my package:
from __future__ import annotations
import pandas as pd
def col_sum(x: pd.Series[...
-2
votes
1
answer
1k
views
How to change the Nox Player IMEI or device model?
i am looking for a method to change Nox Playes IMEI or device model, it have this setting in settings.
I thinking about changing it through the pyautogui, i tried adb, but none of the commands worked.
...
8
votes
2
answers
2k
views
when i select debug app option in Android Studio this error comes: Error running 'app': Error retrieving capabilities from the device 127.0.0.1:62001
When I select the debug app option in Android Studio, this error comes:
Error running 'app': Error retrieving capabilities from the device 127.0.0.1:62001
Has anyone encountered such a case so far?
2
votes
0
answers
546
views
Python packaging with Flit: specifying dependencies: nox, Flit, and pyproject.toml
I am using Nox to automate various Python packaging tasks. I am using Flit to build a dist package and pyproject.toml is the metadata file.
My pyproject.toml looks as follows:
[build-system]
requires =...
0
votes
1
answer
1k
views
Why am I seeing ZombieProcess exceptions when running Python tests with nox on MacOS?
I'm running Python tests with nox for the first time, and although the tests appear to be passing I'm consistently seeing the following (this has nothing to do with boto3, it's happening on all my ...
0
votes
1
answer
69
views
Record a Mobile application to create a JMeter script
We have a mobile application and recently deployed a new version with updated features. We are creating new JMeter scripts by recording the login, add credit card etc., features using nox recorder. We ...
0
votes
2
answers
685
views
Running a piped command in Nox
Nox runs commands via nox.Session.run. For example, this is a typical nox command:
import nox
@nox.session(venv_backend="none")
def black(session: nox.Session):
session.run("black&...
drhagen's user avatar
- 9,862
1
vote
0
answers
260
views
Using default tool values for reusable noxfile
I am implementing a reusable noxfile, my goal is that the different Python components of my project can have the same workflow for testing, linting, etc.
To do this, I created a nox_plugin module ...
2
votes
1
answer
2k
views
how to use environment variable in a nox session?
I want to use nox to run my test suit in a controlled environment. To perfectly work I need to pass an environment variable from my normal env to the virtual one is it possible and if yes how ?
@nox....
3
votes
0
answers
820
views
nox: Install different versions of dependency using poetry according to Python version
I am using nox in order to test my code against different Python versions. I have a dependent package that is stored on my local hard drive. I add this package via poetry with the following command:
...
0
votes
1
answer
452
views
ERROR: JAVA_HOME is not set and no 'java' command could be found in your PATH. React Native in Visual Studio Code
I am using Visual studio code to develop React-native apps and nox player as android emulator. I don't want to install Java SDK/JDK to resolve the below issue. I am using yarn, and yarn android ...