diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 0e8be0a..37393c1 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -44,27 +44,8 @@ jobs: - name: Install dependencies run: | python3 -m pip install -U pip - python3 -m pip install -U pytest - python3 -m pip install -U tqdm - python3 -m pip install -vvv coverage>=7.4.2 - name: Test run: | - python --version + python --version --version python test.py - python -m pip --version - jq --version - - - name: pip cache dir - run: | - python -m pip cache dir - - - name: "Non-Windows: pip cache dir > /dev/null" - if: "!startsWith(matrix.os, 'windows')" - run: | - python -m pip cache dir > /dev/null - - - name: "Windows: pip cache dir > NUL" - if: "startsWith(matrix.os, 'windows')" - run: | - python -m pip cache dir > NUL diff --git a/test.py b/test.py index 973b1f6..adf553a 100755 --- a/test.py +++ b/test.py @@ -1,13 +1,4 @@ -#!/usr/bin/env python -import sys +import datetime -from tqdm import tqdm - -print(123) - -print(sys.version) - -for i in tqdm(range(1000)): - pass - -print("My PIN is 1234") +y = datetime.datetime.fromisoformat("0000W25") +print(y)