summaryrefslogtreecommitdiffstats
path: root/tests/testsuite/python.rs
diff options
context:
space:
mode:
authorMatan Kushner <hello@matchai.me>2019-07-19 15:56:36 -0400
committerGitHub <noreply@github.com>2019-07-19 15:56:36 -0400
commit025c0e5e8530ee1f53d2a45cd1d1de437cc2e819 (patch)
tree0b938bffeaa1e72b07fee7c9976efebe65972032 /tests/testsuite/python.rs
parent6d40d64612017b9cc03c8e44e780474718dfbad4 (diff)
ci: Use Python v3.6.9 in CI (#101)
Diffstat (limited to 'tests/testsuite/python.rs')
-rw-r--r--tests/testsuite/python.rs8
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/testsuite/python.rs b/tests/testsuite/python.rs
index 7a68a916e..bc47c53a4 100644
--- a/tests/testsuite/python.rs
+++ b/tests/testsuite/python.rs
@@ -16,7 +16,7 @@ fn folder_with_python_version() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.8"));
+ let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.9"));
assert_eq!(expected, actual);
Ok(())
}
@@ -33,7 +33,7 @@ fn folder_with_requirements_txt() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.8"));
+ let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.9"));
assert_eq!(expected, actual);
Ok(())
}
@@ -50,7 +50,7 @@ fn folder_with_pyproject_toml() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.8"));
+ let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.9"));
assert_eq!(expected, actual);
Ok(())
}
@@ -67,7 +67,7 @@ fn folder_with_py_file() -> io::Result<()> {
.output()?;
let actual = String::from_utf8(output.stdout).unwrap();
- let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.8"));
+ let expected = format!("via {} ", Color::Yellow.bold().paint("🐍 v3.6.9"));
assert_eq!(expected, actual);
Ok(())
}