skip_months = skip_months + datetime.timedelta(days=(mydate.day-1))
>>> change_month(datetime.datetime(2021, 2, 2), 11)
Traceback (most recent call last):
File "<pyshell#11>", line 1, in <module>
change_month(datetime.datetime(2021, 2, 2), 11)
File "<pyshell#5>", line 2, in change_month
skip_months = datetime.datetime(mydate.year + int(months / 12), (mydate.month % 12+ months % 12), 1)
ValueError: month must be in 1..12
services:
- selenoid/chrome
image: python:3.9-alpine
before_script:
- pip3 install -r requirements.txt
- ?(./cm selenoid)? start #Вопрос еще в том, как его запустить
script:
- pytest
from selenium import webdriver
capabilities = {
"browserName": "chrome",
"browserVersion": "89.0",
"selenoid:options": {
"enableVNC": True,
"enableVideo": False
}
}
driver = webdriver.Remote(
command_executor="http://selenoid:4444/wd/hub",
desired_capabilities=capabilities)
seluser@selenhost:/$ curl http://localhost:9515
{"value":{"error":"unknown command","message":"unknown command: unknown command: ","stacktrace":"#0 0x55bc870d32b9 \u003Cunknown>\n"}}
в folder1 положил __init__.py
пробовал оставить пустым, запускал из корня root_folder
python .\folder2\file2.py
и корня folder2
python .\file2.py
тоже самое пробовал делать, предварительно вписав в __init__.py
from .file1 import attr1
результат тот же -
ModuleNotFoundError: No module named 'folder1'