self.target.run("echo 'nameserver 8.8.8.8' > /etc/resolv.conf")
cmd = "cd %s; maturin develop" % targetdir
status, output = self.target.run(cmd)
- self.assertRegex(output, r"🔗 Found pyo3 bindings with abi3 support for Python ≥ 3.8")
- self.assertRegex(output, r"🐍 Not using a specific python interpreter")
+ self.assertRegex(output, r"🔗 Found pyo3 bindings with abi3 support")
self.assertRegex(output, r"📡 Using build options features from pyproject.toml")
- self.assertRegex(output, r"Compiling guessing-game v0.1.0")
- self.assertRegex(output, r"📦 Built wheel for abi3 Python ≥ 3.8")
- self.assertRegex(output, r"🛠 Installed guessing-game-0.1.0")
+ self.assertRegex(output, r"Compiling guessing-game v0.3.0")
+ self.assertRegex(output, r"📦 Built wheel for abi3 Python ≥ 3.9")
+ self.assertRegex(output, r"🛠 Installed guessing-game-0.3.0")
self.assertEqual(status, 0)