We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a7e787f commit 081bfdaCopy full SHA for 081bfda
scripts/atest.py
@@ -1,14 +1,14 @@
1
-import os
2
import subprocess
3
import sys
+from os.path import abspath, dirname, join
4
5
# import for PATH side-effect. yuck.
6
import chromedriver_binary # noqa
7
8
9
-here = os.path.dirname(__file__)
10
-out = os.path.join(here, "..", "_artifacts", "test_output")
11
-tests = os.path.join(here, "..", "atest", "acceptance")
+here = dirname(__file__)
+out = abspath(join(here, "..", "_artifacts", "test_output"))
+tests = abspath(join(here, "..", "atest", "acceptance"))
12
13
14
def run_tests(*robot_args):
0 commit comments