GithubHelp home page GithubHelp logo

Comments (5)

mtelka avatar mtelka commented on July 27, 2024 1

I tested with patch from #794 and now the test is properly skipped.

from nox.

cjolowicz avatar cjolowicz commented on July 27, 2024

Thanks for reporting! I could reproduce.

Would something like this work?

            pytest.param("nox.virtualenv.CondaEnv.create", "conda", nox.virtualenv.CondaEnv, marks=has_conda),

The has_conda marker is defined in test_virtualenv.py.

from nox.

mtelka avatar mtelka commented on July 27, 2024
/usr/lib/python3.9/ast.py:50: in parse
    return compile(source, filename, mode, flags,
E     File "$(BUILD_DIR)/tests/test_sessions.py", line 949
E       ("nox.virtualenv.CondaEnv.create", "conda", nox.virtualenv.CondaEnv, marks=has_conda),
E                                                                                 ^
E   SyntaxError: invalid syntax

from nox.

mtelka avatar mtelka commented on July 27, 2024

Above tested with this patch:

--- nox-2024.3.2/tests/test_sessions.py.orig
+++ nox-2024.3.2/tests/test_sessions.py
@@ -946,7 +946,7 @@
                 nox.virtualenv.VirtualEnv,
             ),
             ("nox.virtualenv.VirtualEnv.create", "venv", nox.virtualenv.VirtualEnv),
-            ("nox.virtualenv.CondaEnv.create", "conda", nox.virtualenv.CondaEnv),
+            ("nox.virtualenv.CondaEnv.create", "conda", nox.virtualenv.CondaEnv, marks=has_conda),
         ],
     )
     def test__create_venv_options(self, create_method, venv_backend, expected_backend):

from nox.

mtelka avatar mtelka commented on July 27, 2024

I looked at #794 and I had to use it differently. Sorry for mess.

from nox.

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.