Python Test Engineer
Python Test Engineer
  • 140
  • 7 452
Toolbox - Visual Regression of two screenshots
We can compare two images of the same dimensions to test whether there are any visual difference.
GitHub: github.com/Python-Test-Engineer/yt-visual-regression
PyTest Cookbook: pytest-cookbook.com/toolbox/visual_regression/
มุมมอง: 7

วีดีโอ

Using PyPA HATCH to create a development setup on Windows for Python projects.
มุมมอง 3721 ชั่วโมงที่ผ่านมา
I am on Windows and wanted to set up a dev project using Hatch for Python. I show how I install and set up Hatch for a dev project and there is a link to a repo. Repo: github.com/Python-Test-Engineer/yt-hatch My eBook: pytest-cookbook.com/toolbox/hatch/
Docker Tips - 03 Override extra
มุมมอง 614 วันที่ผ่านมา
Docker Tips - 03 Override extra It is also worth noting that if we have two docker composes files such as docker-compose.yml and docker-compose-override.yml then running docker compose up will run docker-compose.yml and then automatically run docker-compose-override.yml. NB we can use compose.yml instead of docker-compose.yml now as default file. pytest-cookbook.com/docker/docker_advanced/#depe...
Docker Tips - 02 Override
มุมมอง 714 วันที่ผ่านมา
Docker Tips - 02 Override We can pass in a range of files using the -f flag and the following files override any values in the previous file or add if not present. We can use compose.yml as default now rather than docker-compose.yml. In Docker Compose, 'depends_on' field is used to express the dependencies between the services of an application and specify the order in which these services shou...
Docker Tips - 01 Depends On
มุมมอง 1314 วันที่ผ่านมา
Docker Tips - 01 Depends On How to use Depends On with additional functionality In Docker Compose, 'depends_on' field is used to express the dependencies between the services of an application and specify the order in which these services should be started and stopped. pytest-cookbook.com/docker/docker_advanced/#depends_on
PyTest With Eric 07 - My wiring of the FastAPI-Mortgage_Calculator
มุมมอง 1714 วันที่ผ่านมา
PyTest With Eric 07 - My wiring of the FastAPI-Mortgage_Calculator My wiring of all the components plus use of PgAdmin to see DB and also some SQL Structural tests. GitHub: github.com/Python-Test-Engineer/yt-fastapi-postgres-mortgage Article: pytest-with-eric.com/api-testing/pytest-api-testing-1/
PyTest-Full-Stack TOOLBOX - 04 Pydantic DTS Before and After field validation/transformation
มุมมอง 421 วันที่ผ่านมา
PyTest-Full-Stack TOOLBOX - 04 Pydantic DTS Before and After field validation/transformation We can apply Before and After validations/transformations on a field by field basis. We look at ordering of validators where many exist for a given field. GitHub: github.com/Python-Test-Engineer/yt-pydantic-dts PyTest Cookbook is a set of test frameworks ready built and instable with template tests, vid...
PyTest-Full-Stack TOOLBOX - 03 Pydantic DTS Nested models
มุมมอง 821 วันที่ผ่านมา
PyTest-Full-Stack TOOLBOX - 03 Pydantic DTS Nested models We can use nested models for composition. GitHub: github.com/Python-Test-Engineer/yt-pydantic-dts PyTest Cookbook is a set of test frameworks ready built and instable with template tests, video and article resources. I link to other great resources and often transcribe source code where not available and wire them into the PyTest framewo...
PyTest-Full-Stack TOOLBOX - 02 Pydantic DTS Filter API dataset
มุมมอง 121 วันที่ผ่านมา
PyTest-Full-Stack TOOLBOX - 02 Pydantic DTS Filter API dataset We use our basic template to filter out unwanted REST API fields as well as use camelCase for field names. GitHub: github.com/Python-Test-Engineer/yt-pydantic-dts PyTest Cookbook is a set of test frameworks ready built and instable with template tests, video and article resources. I link to other great resources and often transcribe...
PyTest-Full-Stack TOOLBOX - 01 Pydantic DTS Intro
มุมมอง 721 วันที่ผ่านมา
PyTest-Full-Stack TOOLBOX - 01 Pydantic DTS Intro An introduction to a set of templates for ingesting a REST API. GitHub: github.com/Python-Test-Engineer/yt-pydantic-dts PyTest Cookbook is a set of test frameworks ready built and instable with template tests, video and article resources. I link to other great resources and often transcribe source code where not available and wire them into the ...
Docker To Go - 01A FastAPI with reload MULTI-STAGE build
มุมมอง 17หลายเดือนก่อน
Docker To Go - 01A FastAPI with reload MULTI-STAGE build This is an example of a multistage Docker build for FastAPI but can be used in any build where we want to create artifacts for the main image but not include the files needed to create these artificats, e.g. cpython binary builds. The repo has all the 'Docker To GO' set ups and has its own PythonCRUD-Postgres-PgAdmin-Admimer which needs t...
Docker To Go - 03 Django reload with SQLite or Postgres as DB
มุมมอง 14หลายเดือนก่อน
Docker To Go - 03 Django reload with SQLite or Postgres as DB 'Out of the box' Django set up with options for SQLite or Postgres as DB. You can enter container to run all the usual Django CLI and any changes to code are reflected in browser on refresh without having to rebuild image etc. 'Out of the box' Docker To Go Postgres DB with Python CRUD scripts and PgAmdin or Adminer client. If you nee...
Docker To Go - 02 Python-Postgres-PgAdmin-Adminer
มุมมอง 18หลายเดือนก่อน
Docker To Go - 02 Python-Postgres-PgAdmin-Adminer 'Out of the box' Docker To Go Postgres DB with Python CRUD scripts and PgAmdin or Adminer client. If you need a test Postgres DB then this Docker To Go will do the job. Works out of the box with a range of Python CRUD scripts connecting to the Postgres instance. GitHub Repo: github.com/Python-Test-Engineer/yt-docker-to-go PyTest Cookbook: pytest...
Docker To Go - 01 FastAPI hot reloading
มุมมอง 45หลายเดือนก่อน
You may want to develop your FastAPI app with Docker and use hot reloading. This video and repo will give you this 'out of the box'. You may want to have your own mock API service to use for testing with added endpoints and this will enable you to do this. GitHub Repo: github.com/Python-Test-Engineer/yt-docker-to-go PyTest Cookbook: pytest-cookbook.com
Docker-Postgres-YoYo - 04 SQL Schema scripts to list PK, FK, constraints etc
มุมมอง 9หลายเดือนก่อน
Docker-Postgres-YoYo - 04 SQL Schema scripts to list PK, FK, constraints etc We can get lists of constraints such as primary and foreign keys as well as defaults, check constraints and unique constraints. This can enable us to run PyTest assertions that our DB is in tact during development work or CI/CD. GitHub Repo: github.com/Python-Test-Engineer/yt-docker-postgres-yoyo-pytest PyTest Cookbook...
Docker-Postgres-YoYo - 03 Setting up YoYo from scratch
มุมมอง 4หลายเดือนก่อน
Docker-Postgres-YoYo - 03 Setting up YoYo from scratch
Docker-Postgres-YoYo - 02 Clone repo and setup, tour project and view PgAdmin
มุมมอง 12หลายเดือนก่อน
Docker-Postgres-YoYo - 02 Clone repo and setup, tour project and view PgAdmin
Docker-Postgres-YoYo - 01 Introduction to YoYo migrations
มุมมอง 30หลายเดือนก่อน
Docker-Postgres-YoYo - 01 Introduction to YoYo migrations
Python Mock Deep Dive - 14 Remaining examples of patch and mock
มุมมอง 15หลายเดือนก่อน
Python Mock Deep Dive - 14 Remaining examples of patch and mock
Python Mock Deep Dive - 13 Patching builtins using PyTest's monkeypatch
มุมมอง 20หลายเดือนก่อน
Python Mock Deep Dive - 13 Patching builtins using PyTest's monkeypatch
Python Mock Deep Dive - 12 Patching requests using PyTest's monkeypatch
มุมมอง 16หลายเดือนก่อน
Python Mock Deep Dive - 12 Patching requests using PyTest's monkeypatch
Python Mock Deep Dive - 11 Patching requests and test functions
มุมมอง 10หลายเดือนก่อน
Python Mock Deep Dive - 11 Patching requests and test functions
Python Mock Deep Dive - 10 Using Python's Patch with requests
มุมมอง 3หลายเดือนก่อน
Python Mock Deep Dive - 10 Using Python's Patch with requests
Python Mock Deep Dive - 09 Using Python's Patch with four examples
มุมมอง 1หลายเดือนก่อน
Python Mock Deep Dive - 09 Using Python's Patch with four examples
Python Mock Deep Dive - 08 A useful set of tests to learn about Mock, Patch Source Classes
มุมมอง 9หลายเดือนก่อน
Python Mock Deep Dive - 08 A useful set of tests to learn about Mock, Patch Source Classes
Python Mock Deep Dive - 07 Inspecting source code mock.py
มุมมอง 9หลายเดือนก่อน
Python Mock Deep Dive - 07 Inspecting source code mock.py
Python Mock Deep Dive - 06 Creating our own Mock and Spy
มุมมอง 10หลายเดือนก่อน
Python Mock Deep Dive - 06 Creating our own Mock and Spy
Python Mock Deep Dive - 04 What happens when we import a module?
มุมมอง 18หลายเดือนก่อน
Python Mock Deep Dive - 04 What happens when we import a module?
Python Mock Deep Dive - 05 Creating our own Mock class
มุมมอง 17หลายเดือนก่อน
Python Mock Deep Dive - 05 Creating our own Mock class
Python Mock Deep Dive - 03 Rich and PyBoxen
มุมมอง 13หลายเดือนก่อน
Python Mock Deep Dive - 03 Rich and PyBoxen

ความคิดเห็น

  • @modhilmodhil33
    @modhilmodhil33 2 หลายเดือนก่อน

    Kiya yyuuva da

  • @Dineshkumar-jr9bj
    @Dineshkumar-jr9bj 2 หลายเดือนก่อน

    @modhilmodhil33

  • @Dineshkumar-jr9bj
    @Dineshkumar-jr9bj 2 หลายเดือนก่อน

    Good job da naina

  • @christiancolewan
    @christiancolewan 5 หลายเดือนก่อน

    Great Overview.

  • @MrRolandasas
    @MrRolandasas ปีที่แล้ว

    are there any new videos coming? great job ;)

  • @Jovtiblogs
    @Jovtiblogs ปีที่แล้ว

    thanks bro to help its osam

  • @davidfox4253
    @davidfox4253 ปีที่แล้ว

    Thanks for the tutorial Craig - for a first-timer WP plugin builder learning this boilerplate will be very useful for me. Cheers

  • @Mercio2
    @Mercio2 ปีที่แล้ว

    nice! 👏

  • @matthewrobertson8824
    @matthewrobertson8824 ปีที่แล้ว

    Thanks for this works great. Have Xampp on this computer and had trouble with a docker container with nginx but this works fine with persistent local db

    • @iwswordpress
      @iwswordpress ปีที่แล้ว

      Really appreciate that! :)

  • @EricThomson
    @EricThomson ปีที่แล้ว

    I have been looking for a block building tutorial based on FSE block theme, so thank you for providing this one!

  • @EricThomson
    @EricThomson ปีที่แล้ว

    wp.blocks.registerBlockType("ourblocktheme/banner", { title: "Banner", icon:{ "src":"smiley", "background": "#2196f3", "foreground": "#fff" }, category: "text", attributes: { valueOne: {type: "string"}, valueTwo: {type: "string"} }, edit: function (props) { function updateValueOne(event) { props.setAttributes({valueOne: event.target.value}) } function updateValueTwo(event) { props.setAttributes({valueTwo: event.target.value}) } return ( <div> <input type="text" placeholder="valueOne" value={props.attributes.valueOne} onChange={updateValueOne} /> <input type="text" placeholder="valueTwo" value={props.attributes.valueTwo} onChange={updateValueTwo} /> </div> ) }, save: function (props) { return null } })

  • @EricThomson
    @EricThomson ปีที่แล้ว

    What/where is "03 Dynamic Blocks"? I see, just edit banner.js to replace everything after: category: "text" with the attributes and form to update the values. Then start the functions.php file from scratch.

  • @VR_UNLOCKED
    @VR_UNLOCKED ปีที่แล้ว

    GREAT JOB ...🤘🤘IT WORKED..🤩

  • @kraig3632
    @kraig3632 2 ปีที่แล้ว

    promosm 🙄

  • @devbash
    @devbash 2 ปีที่แล้ว

    Hi Craig, great video! Would you happen to have a public repo available for viewing?

  • @jkaryskycoo
    @jkaryskycoo 3 ปีที่แล้ว

    How does this have only 3 views? It's the best WC video series on youtube.

    • @iwswordpress
      @iwswordpress 3 ปีที่แล้ว

      Thanks for that! I have drawn from the many resources available about Web Components from YT, courses, books etc. Appreciate it!!!

  • @random-user9818
    @random-user9818 3 ปีที่แล้ว

    Excellent information subscribed and hit the bell icon. Can't wait for more of your very helpful content.

  • @random-user9818
    @random-user9818 3 ปีที่แล้ว

    Another excellent video, very much appreciated.

  • @random-user9818
    @random-user9818 3 ปีที่แล้ว

    Thank you for making these wonderful resources available and sharing your time and knowledge. <3 I found your channel after emailing your from your excellent udemy course on WP-HTML.

  • @abdullaalblooshi2406
    @abdullaalblooshi2406 4 ปีที่แล้ว

    I think few developers nowadays use ajax. Many moved to the fetch API, and some are using async await. I don't know if axios can be used with php, if so, it would be a good option too.