mirror of
https://github.com/shlomif/PySolFC.git
synced 2025-04-05 00:02:29 -04:00
travis / py3 fix - str.replace.
This commit is contained in:
parent
6fbbe82593
commit
2d60bdf726
2 changed files with 2 additions and 4 deletions
2
Makefile
2
Makefile
|
@ -65,7 +65,7 @@ mo:
|
||||||
|
|
||||||
pretest:
|
pretest:
|
||||||
@rm -f tests/individually-importing/*.py # To avoid stray files
|
@rm -f tests/individually-importing/*.py # To avoid stray files
|
||||||
python scripts/gen_individual_importing_tests.py
|
python3 scripts/gen_individual_importing_tests.py
|
||||||
|
|
||||||
TEST_ENV_PATH = "`pwd`:`pwd`/tests/lib"
|
TEST_ENV_PATH = "`pwd`:`pwd`/tests/lib"
|
||||||
TEST_ENV = PYTHONPATH="$$PYTHONPATH:"$(TEST_ENV_PATH) PERL5LIB="$$PERL5LIB:"$(TEST_ENV_PATH)
|
TEST_ENV = PYTHONPATH="$$PYTHONPATH:"$(TEST_ENV_PATH) PERL5LIB="$$PERL5LIB:"$(TEST_ENV_PATH)
|
||||||
|
|
|
@ -4,7 +4,6 @@
|
||||||
import os
|
import os
|
||||||
import os.path
|
import os.path
|
||||||
import re
|
import re
|
||||||
import string
|
|
||||||
from sys import platform
|
from sys import platform
|
||||||
|
|
||||||
IS_MAC = (platform == "darwin")
|
IS_MAC = (platform == "darwin")
|
||||||
|
@ -15,8 +14,7 @@ for d, _, files in os.walk("pysollib"):
|
||||||
for f in files:
|
for f in files:
|
||||||
if re.search("\\.py$", f):
|
if re.search("\\.py$", f):
|
||||||
module_names.append(
|
module_names.append(
|
||||||
string.replace(d + "/" +
|
(d + "/" + re.sub("\\.py$", "", f)).replace("/", "."))
|
||||||
re.sub("\\.py$", "", f), "/", "."))
|
|
||||||
|
|
||||||
module_names.sort()
|
module_names.sort()
|
||||||
for module_name in module_names:
|
for module_name in module_names:
|
||||||
|
|
Loading…
Add table
Reference in a new issue