diff --git a/.github/workflows/testing.yml b/.github/workflows/testing.yml index 8a221bf4..845e4d9f 100644 --- a/.github/workflows/testing.yml +++ b/.github/workflows/testing.yml @@ -19,10 +19,10 @@ jobs: matrix: os: ["ubuntu-latest"] python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"] - include: + #include: # only test with Python 3.10 on Windows - - os: windows-latest - python-version: "3.10" + # - os: windows-latest + # python-version: "3.10" steps: - uses: actions/checkout@v4 diff --git a/appveyor.yml b/appveyor.yml deleted file mode 100644 index de88e7d2..00000000 --- a/appveyor.yml +++ /dev/null @@ -1,22 +0,0 @@ -version: '{build}-{branch}' - -image: Visual Studio 2022 - -platform: x64 - -environment: - PYTHON: "C:\\Python38-x64" - DISTUTILS_USE_SDK: "1" - API_TOKEN: - secure: VEKn4bYH3QO0ixtQW5ni4Enmn8cS1NlZV246ludBDgQ= - -install: - - cinst nmap - - "%PYTHON%\\python.exe -m pip install -U pip setuptools" # upgrade pip & setuptools first - - "%PYTHON%\\python.exe -m pip install -r dev-requirements.txt" - - "%PYTHON%\\python.exe -m pip install -r win-requirements.txt" - -build: off - -test_script: - - "%PYTHON%\\python.exe -m pytest -v"