Skip to content

replace deprecated tz.localize() with datetime.replace() #1475

replace deprecated tz.localize() with datetime.replace()

replace deprecated tz.localize() with datetime.replace() #1475

Workflow file for this run

name: Test Package
on:
push:
pull_request:
schedule:
- cron: '0 3 * * 1'
jobs:
flake8_tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
with:
python-version: '3.x'
- name: Install flake8
run: pip install flake8
- name: Run flake8
run: flake8 .
python3_tests:
runs-on: ubuntu-latest
strategy:
matrix:
os: [debian12, debian11, debian10, ubuntu24.04, ubuntu22.04, ubuntu20.04]
steps:
- uses: actions/checkout@v2
- uses: actions/setup-python@v2
- name: Update bash files
run: |
chmod +x .ci/run.sh
chmod +x .ci/install.sh
- name: Build the docker
env:
OSYS: ${{ matrix.os }}
run: docker build -t ndts .ci/${OSYS}_py3
- name: Run the docker
run: docker run --name ndts -d -it -v `pwd`:/home/tango ndts
- name: install tango
env:
OSYS: ${{ matrix.os }}
run: .ci/install.sh ${OSYS} 3
- name: run tests
env:
OSYS: ${{ matrix.os }}
run: .ci/run.sh ${OSYS} 3
- name: Stop the docker
run: docker container stop ndts
# python2_tests:
# runs-on: ubuntu-latest
# strategy:
# matrix:
# os: [debian10]
# steps:
# - uses: actions/checkout@v2
# - uses: actions/setup-python@v2
# - name: Update bash files
# run: |
# chmod +x .ci/run.sh
# chmod +x .ci/install.sh
# - name: Build the docker
# env:
# OSYS: ${{ matrix.os }}
# run: docker build -t ndts .ci/${OSYS}_py2
# - name: Run the docker
# run: docker run --name ndts -d -it -v `pwd`:/home/tango ndts
# - name: install tango
# env:
# OSYS: ${{ matrix.os }}
# run: .ci/install.sh ${OSYS} 2
# - name: run tests
# env:
# OSYS: ${{ matrix.os }}
# run: .ci/run.sh ${OSYS} 2
# - name: Stop the docker
# run: docker container stop ndts